@azure-rest/arm-servicefabric 1.0.0-alpha.20250612.1 → 1.0.0-alpha.20250616.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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure-rest/arm-servicefabric",
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.20250616.1",
|
|
6
6
|
"description": "",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
]
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
40
|
+
"node": ">=20.0.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
77
77
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
78
78
|
"@azure/identity": "^4.7.0",
|
|
79
|
-
"@types/node": "^
|
|
79
|
+
"@types/node": "^20.0.0",
|
|
80
80
|
"@vitest/browser": "^3.0.9",
|
|
81
81
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
82
82
|
"autorest": "latest",
|
|
@@ -727,7 +727,7 @@ export interface ClusterProperties {
|
|
|
727
727
|
infrastructureServiceManager?: boolean;
|
|
728
728
|
managementEndpoint: string;
|
|
729
729
|
nodeTypes: Array<NodeTypeDescription>;
|
|
730
|
-
notifications?: Array<
|
|
730
|
+
notifications?: Array<Notification>;
|
|
731
731
|
reliabilityLevel?: "None" | "Bronze" | "Silver" | "Gold" | "Platinum";
|
|
732
732
|
reverseProxyCertificate?: CertificateDescription;
|
|
733
733
|
reverseProxyCertificateCommonNames?: ServerCertificateCommonNames;
|
|
@@ -791,7 +791,7 @@ export interface ClusterPropertiesUpdateParameters {
|
|
|
791
791
|
fabricSettings?: Array<SettingsSectionDescription>;
|
|
792
792
|
infrastructureServiceManager?: boolean;
|
|
793
793
|
nodeTypes?: Array<NodeTypeDescription>;
|
|
794
|
-
notifications?: Array<
|
|
794
|
+
notifications?: Array<Notification>;
|
|
795
795
|
reliabilityLevel?: "None" | "Bronze" | "Silver" | "Gold" | "Platinum";
|
|
796
796
|
reverseProxyCertificate?: CertificateDescription;
|
|
797
797
|
sfZonalUpgradeMode?: "Parallel" | "Hierarchical";
|
|
@@ -1382,13 +1382,12 @@ export interface NodeTypeDescriptionOutput {
|
|
|
1382
1382
|
}
|
|
1383
1383
|
|
|
1384
1384
|
// @public
|
|
1385
|
-
interface
|
|
1385
|
+
export interface Notification {
|
|
1386
1386
|
isEnabled: boolean;
|
|
1387
1387
|
notificationCategory: "WaveProgress";
|
|
1388
1388
|
notificationLevel: "Critical" | "All";
|
|
1389
1389
|
notificationTargets: Array<NotificationTarget>;
|
|
1390
1390
|
}
|
|
1391
|
-
export { Notification_2 as Notification }
|
|
1392
1391
|
|
|
1393
1392
|
// @public
|
|
1394
1393
|
export interface NotificationOutput {
|