@azure/arm-storagecache 8.0.1-alpha.20250611.1 → 8.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 +3 -3
- package/review/arm-storagecache.api.md +10 -11
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 StorageCacheManagementClient.",
|
6
|
-
"version": "8.0.1-alpha.
|
6
|
+
"version": "8.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",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
35
35
|
"@azure/identity": "^4.6.0",
|
36
36
|
"@azure/logger": "^1.1.4",
|
37
|
-
"@types/node": "^
|
37
|
+
"@types/node": "^20.0.0",
|
38
38
|
"@vitest/browser": "^3.0.9",
|
39
39
|
"@vitest/coverage-istanbul": "^3.0.9",
|
40
40
|
"dotenv": "^16.0.0",
|
@@ -358,7 +358,7 @@ export interface BlobNfsTarget {
|
|
358
358
|
}
|
359
359
|
|
360
360
|
// @public
|
361
|
-
interface
|
361
|
+
export interface Cache {
|
362
362
|
cacheSizeGB?: number;
|
363
363
|
directoryServicesSettings?: CacheDirectorySettings;
|
364
364
|
encryptionSettings?: CacheEncryptionSettings;
|
@@ -384,7 +384,6 @@ interface Cache_2 {
|
|
384
384
|
readonly upgradeStatus?: CacheUpgradeStatus;
|
385
385
|
zones?: string[];
|
386
386
|
}
|
387
|
-
export { Cache_2 as Cache }
|
388
387
|
|
389
388
|
// @public
|
390
389
|
export interface CacheActiveDirectorySettings {
|
@@ -446,8 +445,8 @@ export interface CacheNetworkSettings {
|
|
446
445
|
|
447
446
|
// @public
|
448
447
|
export interface Caches {
|
449
|
-
beginCreateOrUpdate(resourceGroupName: string, cacheName: string, cache:
|
450
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, cacheName: string, cache:
|
448
|
+
beginCreateOrUpdate(resourceGroupName: string, cacheName: string, cache: Cache, options?: CachesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<CachesCreateOrUpdateResponse>, CachesCreateOrUpdateResponse>>;
|
449
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, cacheName: string, cache: Cache, options?: CachesCreateOrUpdateOptionalParams): Promise<CachesCreateOrUpdateResponse>;
|
451
450
|
beginDebugInfo(resourceGroupName: string, cacheName: string, options?: CachesDebugInfoOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
452
451
|
beginDebugInfoAndWait(resourceGroupName: string, cacheName: string, options?: CachesDebugInfoOptionalParams): Promise<void>;
|
453
452
|
beginDelete(resourceGroupName: string, cacheName: string, options?: CachesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
@@ -473,8 +472,8 @@ export interface Caches {
|
|
473
472
|
beginUpgradeFirmware(resourceGroupName: string, cacheName: string, options?: CachesUpgradeFirmwareOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
474
473
|
beginUpgradeFirmwareAndWait(resourceGroupName: string, cacheName: string, options?: CachesUpgradeFirmwareOptionalParams): Promise<void>;
|
475
474
|
get(resourceGroupName: string, cacheName: string, options?: CachesGetOptionalParams): Promise<CachesGetResponse>;
|
476
|
-
list(options?: CachesListOptionalParams): PagedAsyncIterableIterator<
|
477
|
-
listByResourceGroup(resourceGroupName: string, options?: CachesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<
|
475
|
+
list(options?: CachesListOptionalParams): PagedAsyncIterableIterator<Cache>;
|
476
|
+
listByResourceGroup(resourceGroupName: string, options?: CachesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Cache>;
|
478
477
|
}
|
479
478
|
|
480
479
|
// @public
|
@@ -484,7 +483,7 @@ export interface CachesCreateOrUpdateOptionalParams extends coreClient.Operation
|
|
484
483
|
}
|
485
484
|
|
486
485
|
// @public
|
487
|
-
export type CachesCreateOrUpdateResponse =
|
486
|
+
export type CachesCreateOrUpdateResponse = Cache;
|
488
487
|
|
489
488
|
// @public
|
490
489
|
export interface CachesDebugInfoHeaders {
|
@@ -532,7 +531,7 @@ export interface CachesGetOptionalParams extends coreClient.OperationOptions {
|
|
532
531
|
}
|
533
532
|
|
534
533
|
// @public
|
535
|
-
export type CachesGetResponse =
|
534
|
+
export type CachesGetResponse = Cache;
|
536
535
|
|
537
536
|
// @public
|
538
537
|
export interface CacheSku {
|
@@ -570,7 +569,7 @@ export type CachesListResponse = CachesListResult;
|
|
570
569
|
// @public
|
571
570
|
export interface CachesListResult {
|
572
571
|
nextLink?: string;
|
573
|
-
value?:
|
572
|
+
value?: Cache[];
|
574
573
|
}
|
575
574
|
|
576
575
|
// @public
|
@@ -685,13 +684,13 @@ export interface CachesUpdateHeaders {
|
|
685
684
|
|
686
685
|
// @public
|
687
686
|
export interface CachesUpdateOptionalParams extends coreClient.OperationOptions {
|
688
|
-
cache?:
|
687
|
+
cache?: Cache;
|
689
688
|
resumeFrom?: string;
|
690
689
|
updateIntervalInMs?: number;
|
691
690
|
}
|
692
691
|
|
693
692
|
// @public
|
694
|
-
export type CachesUpdateResponse =
|
693
|
+
export type CachesUpdateResponse = Cache;
|
695
694
|
|
696
695
|
// @public
|
697
696
|
export interface CachesUpgradeFirmwareHeaders {
|