Skip to content

Commit 2ab232f

Browse files
authored
compute-track1 (Azure#18124)
1 parent c52d055 commit 2ab232f

File tree

53 files changed

+1021
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1021
-133
lines changed

sdk/compute/arm-compute/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/arm-compute",
33
"author": "Microsoft Corporation",
44
"description": "ComputeManagementClient Library with typescript type definitions for node.js and browser.",
5-
"version": "16.4.0",
5+
"version": "16.5.0",
66
"dependencies": {
77
"@azure/ms-rest-azure-js": "^2.1.0",
88
"@azure/ms-rest-js": "^2.2.0",

sdk/compute/arm-compute/src/computeManagementClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ class ComputeManagementClient extends ComputeManagementClientContext {
5858
sharedGalleries: operations.SharedGalleries;
5959
sharedGalleryImages: operations.SharedGalleryImages;
6060
sharedGalleryImageVersions: operations.SharedGalleryImageVersions;
61+
communityGalleries: operations.CommunityGalleries;
62+
communityGalleryImages: operations.CommunityGalleryImages;
63+
communityGalleryImageVersions: operations.CommunityGalleryImageVersions;
6164
cloudServiceRoleInstances: operations.CloudServiceRoleInstances;
6265
cloudServiceRoles: operations.CloudServiceRoles;
6366
cloudServices: operations.CloudServices;
@@ -119,6 +122,9 @@ class ComputeManagementClient extends ComputeManagementClientContext {
119122
this.sharedGalleries = new operations.SharedGalleries(this);
120123
this.sharedGalleryImages = new operations.SharedGalleryImages(this);
121124
this.sharedGalleryImageVersions = new operations.SharedGalleryImageVersions(this);
125+
this.communityGalleries = new operations.CommunityGalleries(this);
126+
this.communityGalleryImages = new operations.CommunityGalleryImages(this);
127+
this.communityGalleryImageVersions = new operations.CommunityGalleryImageVersions(this);
122128
this.cloudServiceRoleInstances = new operations.CloudServiceRoleInstances(this);
123129
this.cloudServiceRoles = new operations.CloudServiceRoles(this);
124130
this.cloudServices = new operations.CloudServices(this);

sdk/compute/arm-compute/src/computeManagementClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import * as msRestAzure from "@azure/ms-rest-azure-js";
1313
import { TokenCredential } from "@azure/core-auth";
1414

1515
const packageName = "@azure/arm-compute";
16-
const packageVersion = "16.4.0";
16+
const packageVersion = "16.5.0";
1717

1818
export class ComputeManagementClientContext extends msRestAzure.AzureServiceClient {
1919
credentials: msRest.ServiceClientCredentials | TokenCredential;

sdk/compute/arm-compute/src/models/availabilitySetsMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export {
183183
SubResource,
184184
SubResourceReadOnly,
185185
SubResourceWithColocationStatus,
186+
SupportedCapabilities,
186187
TargetRegion,
187188
TerminateNotificationProfile,
188189
UefiSettings,

sdk/compute/arm-compute/src/models/capacityReservationGroupsMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export {
183183
SubResource,
184184
SubResourceReadOnly,
185185
SubResourceWithColocationStatus,
186+
SupportedCapabilities,
186187
TargetRegion,
187188
TerminateNotificationProfile,
188189
UefiSettings,

sdk/compute/arm-compute/src/models/capacityReservationsMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export {
183183
SubResource,
184184
SubResourceReadOnly,
185185
SubResourceWithColocationStatus,
186+
SupportedCapabilities,
186187
TargetRegion,
187188
TerminateNotificationProfile,
188189
UefiSettings,

sdk/compute/arm-compute/src/models/cloudServiceRoleInstancesMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ export {
180180
SubResource,
181181
SubResourceReadOnly,
182182
SubResourceWithColocationStatus,
183+
SupportedCapabilities,
183184
TargetRegion,
184185
TerminateNotificationProfile,
185186
UefiSettings,

sdk/compute/arm-compute/src/models/cloudServicesMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ export {
180180
SubResource,
181181
SubResourceReadOnly,
182182
SubResourceWithColocationStatus,
183+
SupportedCapabilities,
183184
TargetRegion,
184185
TerminateNotificationProfile,
185186
UefiSettings,
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
4+
*
5+
* Code generated by Microsoft (R) AutoRest Code Generator.
6+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
7+
*/
8+
9+
export {
10+
ApiError,
11+
ApiErrorBase,
12+
CloudError,
13+
CommunityGallery,
14+
CommunityGalleryImage,
15+
CommunityGalleryImageVersion,
16+
Disallowed,
17+
GalleryImageFeature,
18+
GalleryImageIdentifier,
19+
ImagePurchasePlan,
20+
InnerError,
21+
PirCommunityGalleryResource,
22+
RecommendedMachineConfiguration,
23+
ResourceRange
24+
} from "../models/mappers";
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright (c) Microsoft Corporation.
3+
* Licensed under the MIT License.
4+
*
5+
* Code generated by Microsoft (R) AutoRest Code Generator.
6+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
7+
*/
8+
9+
export {
10+
ApiError,
11+
ApiErrorBase,
12+
CloudError,
13+
CommunityGallery,
14+
CommunityGalleryImage,
15+
CommunityGalleryImageVersion,
16+
Disallowed,
17+
GalleryImageFeature,
18+
GalleryImageIdentifier,
19+
ImagePurchasePlan,
20+
InnerError,
21+
PirCommunityGalleryResource,
22+
RecommendedMachineConfiguration,
23+
ResourceRange
24+
} from "../models/mappers";

0 commit comments

Comments
 (0)