Skip to content

Commit e30e798

Browse files
author
SDKAuto
committed
CodeGen from PR 14234 in Azure/azure-rest-api-specs
Merge e534e717de23826509485f9ecc199952919da37b into f75162dc13d19a06ddf5eeea3186dd3dbef1c05e
1 parent 0b9d82b commit e30e798

File tree

58 files changed

+2342
-201
lines changed

Some content is hidden

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

58 files changed

+2342
-201
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ class ComputeManagementClient extends ComputeManagementClientContext {
4949
galleryImageVersions: operations.GalleryImageVersions;
5050
galleryApplications: operations.GalleryApplications;
5151
galleryApplicationVersions: operations.GalleryApplicationVersions;
52+
gallerySharingProfile: operations.GallerySharingProfile;
53+
sharedGalleries: operations.SharedGalleries;
54+
sharedGalleryImages: operations.SharedGalleryImages;
55+
sharedGalleryImageVersions: operations.SharedGalleryImageVersions;
5256
cloudServiceRoleInstances: operations.CloudServiceRoleInstances;
5357
cloudServiceRoles: operations.CloudServiceRoles;
5458
cloudServices: operations.CloudServices;
@@ -97,6 +101,10 @@ class ComputeManagementClient extends ComputeManagementClientContext {
97101
this.galleryImageVersions = new operations.GalleryImageVersions(this);
98102
this.galleryApplications = new operations.GalleryApplications(this);
99103
this.galleryApplicationVersions = new operations.GalleryApplicationVersions(this);
104+
this.gallerySharingProfile = new operations.GallerySharingProfile(this);
105+
this.sharedGalleries = new operations.SharedGalleries(this);
106+
this.sharedGalleryImages = new operations.SharedGalleryImages(this);
107+
this.sharedGalleryImageVersions = new operations.SharedGalleryImageVersions(this);
100108
this.cloudServiceRoleInstances = new operations.CloudServiceRoleInstances(this);
101109
this.cloudServiceRoles = new operations.CloudServiceRoles(this);
102110
this.cloudServices = new operations.CloudServices(this);

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class ComputeManagementClientContext extends msRestAzure.AzureServiceClie
3636
if (!options) {
3737
options = {};
3838
}
39-
if (!options.userAgent) {
39+
if(!options.userAgent) {
4040
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4141
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4242
}
@@ -50,10 +50,10 @@ export class ComputeManagementClientContext extends msRestAzure.AzureServiceClie
5050
this.credentials = credentials;
5151
this.subscriptionId = subscriptionId;
5252

53-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
53+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5454
this.acceptLanguage = options.acceptLanguage;
5555
}
56-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
56+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5757
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
5858
}
5959
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export {
8181
GalleryDiskImage,
8282
GalleryIdentifier,
8383
GalleryImage,
84+
GalleryImageFeature,
8485
GalleryImageIdentifier,
8586
GalleryImageUpdate,
8687
GalleryImageVersion,
@@ -144,6 +145,9 @@ export {
144145
ScheduledEventsProfile,
145146
SecurityProfile,
146147
ShareInfoElement,
148+
SharingProfile,
149+
SharingProfileGroup,
150+
SharingUpdate,
147151
Sku,
148152
Snapshot,
149153
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export {
7777
GalleryDiskImage,
7878
GalleryIdentifier,
7979
GalleryImage,
80+
GalleryImageFeature,
8081
GalleryImageIdentifier,
8182
GalleryImageUpdate,
8283
GalleryImageVersion,
@@ -145,6 +146,9 @@ export {
145146
ScheduledEventsProfile,
146147
SecurityProfile,
147148
ShareInfoElement,
149+
SharingProfile,
150+
SharingProfileGroup,
151+
SharingUpdate,
148152
Sku,
149153
Snapshot,
150154
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export {
8080
GalleryDiskImage,
8181
GalleryIdentifier,
8282
GalleryImage,
83+
GalleryImageFeature,
8384
GalleryImageIdentifier,
8485
GalleryImageUpdate,
8586
GalleryImageVersion,
@@ -144,6 +145,9 @@ export {
144145
ScheduledEventsProfile,
145146
SecurityProfile,
146147
ShareInfoElement,
148+
SharingProfile,
149+
SharingProfileGroup,
150+
SharingUpdate,
147151
Sku,
148152
Snapshot,
149153
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export {
8181
GalleryDiskImage,
8282
GalleryIdentifier,
8383
GalleryImage,
84+
GalleryImageFeature,
8485
GalleryImageIdentifier,
8586
GalleryImageUpdate,
8687
GalleryImageVersion,
@@ -144,6 +145,9 @@ export {
144145
ScheduledEventsProfile,
145146
SecurityProfile,
146147
ShareInfoElement,
148+
SharingProfile,
149+
SharingProfileGroup,
150+
SharingUpdate,
147151
Sku,
148152
Snapshot,
149153
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export {
8181
GalleryDiskImage,
8282
GalleryIdentifier,
8383
GalleryImage,
84+
GalleryImageFeature,
8485
GalleryImageIdentifier,
8586
GalleryImageUpdate,
8687
GalleryImageVersion,
@@ -144,6 +145,9 @@ export {
144145
ScheduledEventsProfile,
145146
SecurityProfile,
146147
ShareInfoElement,
148+
SharingProfile,
149+
SharingProfileGroup,
150+
SharingUpdate,
147151
Sku,
148152
Snapshot,
149153
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export {
7979
GalleryDiskImage,
8080
GalleryIdentifier,
8181
GalleryImage,
82+
GalleryImageFeature,
8283
GalleryImageIdentifier,
8384
GalleryImageUpdate,
8485
GalleryImageVersion,
@@ -143,6 +144,9 @@ export {
143144
ScheduledEventsProfile,
144145
SecurityProfile,
145146
ShareInfoElement,
147+
SharingProfile,
148+
SharingProfileGroup,
149+
SharingUpdate,
146150
Sku,
147151
Snapshot,
148152
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export {
7979
GalleryDiskImage,
8080
GalleryIdentifier,
8181
GalleryImage,
82+
GalleryImageFeature,
8283
GalleryImageIdentifier,
8384
GalleryImageUpdate,
8485
GalleryImageVersion,
@@ -141,6 +142,9 @@ export {
141142
ScheduledEventsProfile,
142143
SecurityProfile,
143144
ShareInfoElement,
145+
SharingProfile,
146+
SharingProfileGroup,
147+
SharingUpdate,
144148
Sku,
145149
Snapshot,
146150
SnapshotSku,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export {
8080
GalleryDiskImage,
8181
GalleryIdentifier,
8282
GalleryImage,
83+
GalleryImageFeature,
8384
GalleryImageIdentifier,
8485
GalleryImageUpdate,
8586
GalleryImageVersion,
@@ -142,6 +143,9 @@ export {
142143
ScheduledEventsProfile,
143144
SecurityProfile,
144145
ShareInfoElement,
146+
SharingProfile,
147+
SharingProfileGroup,
148+
SharingUpdate,
145149
Sku,
146150
Snapshot,
147151
SnapshotSku,

0 commit comments

Comments
 (0)