@azure/arm-servicefabric 3.0.1-alpha.20250611.1 → 3.0.1-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
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for ServiceFabricManagementClient.",
|
|
6
|
-
"version": "3.0.1-alpha.
|
|
6
|
+
"version": "3.0.1-alpha.20250616.1",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/abort-controller": "^2.1.2",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
36
36
|
"@azure/identity": "^4.7.0",
|
|
37
37
|
"@azure/logger": "^1.1.4",
|
|
38
|
-
"@types/node": "^
|
|
38
|
+
"@types/node": "^20.0.0",
|
|
39
39
|
"@vitest/browser": "^3.0.9",
|
|
40
40
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
41
41
|
"dotenv": "^16.0.0",
|
|
@@ -378,7 +378,7 @@ export interface Cluster extends Resource {
|
|
|
378
378
|
infrastructureServiceManager?: boolean;
|
|
379
379
|
managementEndpoint?: string;
|
|
380
380
|
nodeTypes?: NodeTypeDescription[];
|
|
381
|
-
notifications?:
|
|
381
|
+
notifications?: Notification[];
|
|
382
382
|
readonly provisioningState?: ProvisioningState;
|
|
383
383
|
reliabilityLevel?: ReliabilityLevel;
|
|
384
384
|
reverseProxyCertificate?: CertificateDescription;
|
|
@@ -524,7 +524,7 @@ export interface ClusterUpdateParameters {
|
|
|
524
524
|
fabricSettings?: SettingsSectionDescription[];
|
|
525
525
|
infrastructureServiceManager?: boolean;
|
|
526
526
|
nodeTypes?: NodeTypeDescription[];
|
|
527
|
-
notifications?:
|
|
527
|
+
notifications?: Notification[];
|
|
528
528
|
reliabilityLevel?: ReliabilityLevel;
|
|
529
529
|
reverseProxyCertificate?: CertificateDescription;
|
|
530
530
|
sfZonalUpgradeMode?: SfZonalUpgradeMode;
|
|
@@ -871,13 +871,12 @@ export interface NodeTypeDescription {
|
|
|
871
871
|
}
|
|
872
872
|
|
|
873
873
|
// @public
|
|
874
|
-
interface
|
|
874
|
+
export interface Notification {
|
|
875
875
|
isEnabled: boolean;
|
|
876
876
|
notificationCategory: NotificationCategory;
|
|
877
877
|
notificationLevel: NotificationLevel;
|
|
878
878
|
notificationTargets: NotificationTarget[];
|
|
879
879
|
}
|
|
880
|
-
export { Notification_2 as Notification }
|
|
881
880
|
|
|
882
881
|
// @public
|
|
883
882
|
export type NotificationCategory = string;
|