@azure/arm-sphere 1.0.1-alpha.20250613.1 → 1.0.1-alpha.20250617.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-sphere.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 AzureSphereManagementClient.",
|
|
6
|
-
"version": "1.0.1-alpha.
|
|
6
|
+
"version": "1.0.1-alpha.20250617.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",
|
package/review/arm-sphere.api.md
CHANGED
|
@@ -76,8 +76,8 @@ export interface Catalogs {
|
|
|
76
76
|
beginCreateOrUpdateAndWait(resourceGroupName: string, catalogName: string, resource: Catalog, options?: CatalogsCreateOrUpdateOptionalParams): Promise<CatalogsCreateOrUpdateResponse>;
|
|
77
77
|
beginDelete(resourceGroupName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
78
78
|
beginDeleteAndWait(resourceGroupName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<void>;
|
|
79
|
-
beginUploadImage(resourceGroupName: string, catalogName: string, uploadImageRequest:
|
|
80
|
-
beginUploadImageAndWait(resourceGroupName: string, catalogName: string, uploadImageRequest:
|
|
79
|
+
beginUploadImage(resourceGroupName: string, catalogName: string, uploadImageRequest: Image, options?: CatalogsUploadImageOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsUploadImageResponse>, CatalogsUploadImageResponse>>;
|
|
80
|
+
beginUploadImageAndWait(resourceGroupName: string, catalogName: string, uploadImageRequest: Image, options?: CatalogsUploadImageOptionalParams): Promise<CatalogsUploadImageResponse>;
|
|
81
81
|
countDevices(resourceGroupName: string, catalogName: string, options?: CatalogsCountDevicesOptionalParams): Promise<CatalogsCountDevicesResponse>;
|
|
82
82
|
get(resourceGroupName: string, catalogName: string, options?: CatalogsGetOptionalParams): Promise<CatalogsGetResponse>;
|
|
83
83
|
listByResourceGroup(resourceGroupName: string, options?: CatalogsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Catalog>;
|
|
@@ -369,7 +369,7 @@ export interface DeploymentListResult {
|
|
|
369
369
|
|
|
370
370
|
// @public
|
|
371
371
|
export interface DeploymentProperties {
|
|
372
|
-
deployedImages?:
|
|
372
|
+
deployedImages?: Image[];
|
|
373
373
|
readonly deploymentDateUtc?: Date;
|
|
374
374
|
deploymentId?: string;
|
|
375
375
|
readonly provisioningState?: ProvisioningState;
|
|
@@ -738,15 +738,14 @@ export interface GenerateCapabilityImageRequest {
|
|
|
738
738
|
export function getContinuationToken(page: unknown): string | undefined;
|
|
739
739
|
|
|
740
740
|
// @public
|
|
741
|
-
interface
|
|
741
|
+
export interface Image extends ProxyResource {
|
|
742
742
|
properties?: ImageProperties;
|
|
743
743
|
}
|
|
744
|
-
export { Image_2 as Image }
|
|
745
744
|
|
|
746
745
|
// @public
|
|
747
746
|
export interface ImageListResult {
|
|
748
747
|
readonly nextLink?: string;
|
|
749
|
-
value:
|
|
748
|
+
value: Image[];
|
|
750
749
|
}
|
|
751
750
|
|
|
752
751
|
// @public
|
|
@@ -764,12 +763,12 @@ export interface ImageProperties {
|
|
|
764
763
|
|
|
765
764
|
// @public
|
|
766
765
|
export interface Images {
|
|
767
|
-
beginCreateOrUpdate(resourceGroupName: string, catalogName: string, imageName: string, resource:
|
|
768
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, catalogName: string, imageName: string, resource:
|
|
766
|
+
beginCreateOrUpdate(resourceGroupName: string, catalogName: string, imageName: string, resource: Image, options?: ImagesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ImagesCreateOrUpdateResponse>, ImagesCreateOrUpdateResponse>>;
|
|
767
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, catalogName: string, imageName: string, resource: Image, options?: ImagesCreateOrUpdateOptionalParams): Promise<ImagesCreateOrUpdateResponse>;
|
|
769
768
|
beginDelete(resourceGroupName: string, catalogName: string, imageName: string, options?: ImagesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
770
769
|
beginDeleteAndWait(resourceGroupName: string, catalogName: string, imageName: string, options?: ImagesDeleteOptionalParams): Promise<void>;
|
|
771
770
|
get(resourceGroupName: string, catalogName: string, imageName: string, options?: ImagesGetOptionalParams): Promise<ImagesGetResponse>;
|
|
772
|
-
listByCatalog(resourceGroupName: string, catalogName: string, options?: ImagesListByCatalogOptionalParams): PagedAsyncIterableIterator<
|
|
771
|
+
listByCatalog(resourceGroupName: string, catalogName: string, options?: ImagesListByCatalogOptionalParams): PagedAsyncIterableIterator<Image>;
|
|
773
772
|
}
|
|
774
773
|
|
|
775
774
|
// @public
|
|
@@ -784,7 +783,7 @@ export interface ImagesCreateOrUpdateOptionalParams extends coreClient.Operation
|
|
|
784
783
|
}
|
|
785
784
|
|
|
786
785
|
// @public
|
|
787
|
-
export type ImagesCreateOrUpdateResponse =
|
|
786
|
+
export type ImagesCreateOrUpdateResponse = Image;
|
|
788
787
|
|
|
789
788
|
// @public
|
|
790
789
|
export interface ImagesDeleteHeaders {
|
|
@@ -803,7 +802,7 @@ export interface ImagesGetOptionalParams extends coreClient.OperationOptions {
|
|
|
803
802
|
}
|
|
804
803
|
|
|
805
804
|
// @public
|
|
806
|
-
export type ImagesGetResponse =
|
|
805
|
+
export type ImagesGetResponse = Image;
|
|
807
806
|
|
|
808
807
|
// @public
|
|
809
808
|
export interface ImagesListByCatalogNextOptionalParams extends coreClient.OperationOptions {
|