-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Expand file tree
/
Copy pathIComputeManagementClient.cs
More file actions
321 lines (255 loc) · 10.5 KB
/
Copy pathIComputeManagementClient.cs
File metadata and controls
321 lines (255 loc) · 10.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
namespace Microsoft.Azure.Management.Compute
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
/// <summary>
/// The Compute Management Client.
/// </summary>
public partial interface IComputeManagementClient : System.IDisposable
{
/// <summary>
/// The base URI of the service.
/// </summary>
System.Uri BaseUri { get; set; }
/// <summary>
/// Gets or sets json serialization settings.
/// </summary>
Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; }
/// <summary>
/// Gets or sets json deserialization settings.
/// </summary>
Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; }
/// <summary>
/// Credentials needed for the client to connect to Azure.
/// </summary>
Microsoft.Rest.ServiceClientCredentials Credentials { get;}
/// <summary>
/// The ID of the target subscription.
/// </summary>
string SubscriptionId { get; set;}
/// <summary>
/// The preferred language for the response.
/// </summary>
string AcceptLanguage { get; set;}
/// <summary>
/// The retry timeout in seconds for Long Running Operations. Default
/// /// value is 30.
/// </summary>
int? LongRunningOperationRetryTimeout { get; set;}
/// <summary>
/// Whether a unique x-ms-client-request-id should be generated. When
/// /// set to true a unique x-ms-client-request-id value is generated and
/// /// included in each request. Default is true.
/// </summary>
bool? GenerateClientRequestId { get; set;}
/// <summary>
/// Gets the IOperations
/// </summary>
IOperations Operations { get; }
/// <summary>
/// Gets the IAvailabilitySetsOperations
/// </summary>
IAvailabilitySetsOperations AvailabilitySets { get; }
/// <summary>
/// Gets the ICapacityReservationGroupsOperations
/// </summary>
ICapacityReservationGroupsOperations CapacityReservationGroups { get; }
/// <summary>
/// Gets the IDedicatedHostGroupsOperations
/// </summary>
IDedicatedHostGroupsOperations DedicatedHostGroups { get; }
/// <summary>
/// Gets the IImagesOperations
/// </summary>
IImagesOperations Images { get; }
/// <summary>
/// Gets the IInterconnectBlocksOperations
/// </summary>
IInterconnectBlocksOperations InterconnectBlocks { get; }
/// <summary>
/// Gets the IVirtualMachineImagesEdgeZoneOperations
/// </summary>
IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; }
/// <summary>
/// Gets the IVirtualMachineImagesOperations
/// </summary>
IVirtualMachineImagesOperations VirtualMachineImages { get; }
/// <summary>
/// Gets the ILogAnalyticsOperations
/// </summary>
ILogAnalyticsOperations LogAnalytics { get; }
/// <summary>
/// Gets the IVirtualMachineExtensionImagesOperations
/// </summary>
IVirtualMachineExtensionImagesOperations VirtualMachineExtensionImages { get; }
/// <summary>
/// Gets the IVirtualMachineRunCommandsOperations
/// </summary>
IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; }
/// <summary>
/// Gets the IUsageOperations
/// </summary>
IUsageOperations Usage { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetsOperations
/// </summary>
IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; }
/// <summary>
/// Gets the IVirtualMachinesOperations
/// </summary>
IVirtualMachinesOperations VirtualMachines { get; }
/// <summary>
/// Gets the IVirtualMachineSizesOperations
/// </summary>
IVirtualMachineSizesOperations VirtualMachineSizes { get; }
/// <summary>
/// Gets the IProximityPlacementGroupsOperations
/// </summary>
IProximityPlacementGroupsOperations ProximityPlacementGroups { get; }
/// <summary>
/// Gets the IRestorePointCollectionsOperations
/// </summary>
IRestorePointCollectionsOperations RestorePointCollections { get; }
/// <summary>
/// Gets the ISshPublicKeysOperations
/// </summary>
ISshPublicKeysOperations SshPublicKeys { get; }
/// <summary>
/// Gets the ICapacityReservationsOperations
/// </summary>
ICapacityReservationsOperations CapacityReservations { get; }
/// <summary>
/// Gets the IDedicatedHostsOperations
/// </summary>
IDedicatedHostsOperations DedicatedHosts { get; }
/// <summary>
/// Gets the IRestorePointsOperations
/// </summary>
IRestorePointsOperations RestorePoints { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetRollingUpgradesOperations
/// </summary>
IVirtualMachineScaleSetRollingUpgradesOperations VirtualMachineScaleSetRollingUpgrades { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetExtensionsOperations
/// </summary>
IVirtualMachineScaleSetExtensionsOperations VirtualMachineScaleSetExtensions { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetLifeCycleHookEventsOperations
/// </summary>
IVirtualMachineScaleSetLifeCycleHookEventsOperations VirtualMachineScaleSetLifeCycleHookEvents { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetVMSOperations
/// </summary>
IVirtualMachineScaleSetVMSOperations VirtualMachineScaleSetVMS { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetVMExtensionsOperations
/// </summary>
IVirtualMachineScaleSetVMExtensionsOperations VirtualMachineScaleSetVMExtensions { get; }
/// <summary>
/// Gets the IVirtualMachineScaleSetVMRunCommandsOperations
/// </summary>
IVirtualMachineScaleSetVMRunCommandsOperations VirtualMachineScaleSetVMRunCommands { get; }
/// <summary>
/// Gets the IVirtualMachineExtensionsOperations
/// </summary>
IVirtualMachineExtensionsOperations VirtualMachineExtensions { get; }
/// <summary>
/// Gets the IDiskAccessesOperations
/// </summary>
IDiskAccessesOperations DiskAccesses { get; }
/// <summary>
/// Gets the IDiskEncryptionSetsOperations
/// </summary>
IDiskEncryptionSetsOperations DiskEncryptionSets { get; }
/// <summary>
/// Gets the IDisksOperations
/// </summary>
IDisksOperations Disks { get; }
/// <summary>
/// Gets the ISnapshotsOperations
/// </summary>
ISnapshotsOperations Snapshots { get; }
/// <summary>
/// Gets the IDiskRestorePointOperations
/// </summary>
IDiskRestorePointOperations DiskRestorePoint { get; }
/// <summary>
/// Gets the IGalleriesOperations
/// </summary>
IGalleriesOperations Galleries { get; }
/// <summary>
/// Gets the ICommunityGalleriesOperations
/// </summary>
ICommunityGalleriesOperations CommunityGalleries { get; }
/// <summary>
/// Gets the ICommunityGalleryImagesOperations
/// </summary>
ICommunityGalleryImagesOperations CommunityGalleryImages { get; }
/// <summary>
/// Gets the ICommunityGalleryImageVersionsOperations
/// </summary>
ICommunityGalleryImageVersionsOperations CommunityGalleryImageVersions { get; }
/// <summary>
/// Gets the ISharedGalleriesOperations
/// </summary>
ISharedGalleriesOperations SharedGalleries { get; }
/// <summary>
/// Gets the ISharedGalleryImagesOperations
/// </summary>
ISharedGalleryImagesOperations SharedGalleryImages { get; }
/// <summary>
/// Gets the ISharedGalleryImageVersionsOperations
/// </summary>
ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; }
/// <summary>
/// Gets the IGalleryApplicationsOperations
/// </summary>
IGalleryApplicationsOperations GalleryApplications { get; }
/// <summary>
/// Gets the IGalleryApplicationVersionsOperations
/// </summary>
IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; }
/// <summary>
/// Gets the IGalleryImagesOperations
/// </summary>
IGalleryImagesOperations GalleryImages { get; }
/// <summary>
/// Gets the IGalleryImageVersionsOperations
/// </summary>
IGalleryImageVersionsOperations GalleryImageVersions { get; }
/// <summary>
/// Gets the IGalleryInVMAccessControlProfilesOperations
/// </summary>
IGalleryInVMAccessControlProfilesOperations GalleryInVMAccessControlProfiles { get; }
/// <summary>
/// Gets the IGalleryInVMAccessControlProfileVersionsOperations
/// </summary>
IGalleryInVMAccessControlProfileVersionsOperations GalleryInVMAccessControlProfileVersions { get; }
/// <summary>
/// Gets the IGalleryScriptsOperations
/// </summary>
IGalleryScriptsOperations GalleryScripts { get; }
/// <summary>
/// Gets the IGalleryScriptVersionsOperations
/// </summary>
IGalleryScriptVersionsOperations GalleryScriptVersions { get; }
/// <summary>
/// Gets the IGallerySharingProfileOperations
/// </summary>
IGallerySharingProfileOperations GallerySharingProfile { get; }
/// <summary>
/// Gets the ISoftDeletedResourceOperations
/// </summary>
ISoftDeletedResourceOperations SoftDeletedResource { get; }
/// <summary>
/// Gets the IResourceSkusOperations
/// </summary>
IResourceSkusOperations ResourceSkus { get; }
}
}