1
2
3
4
5
6
7
8
9
10 package dtl
11
12 import (
13 "context"
14
15 original "github.com/Azure/azure-sdk-for-go/services/devtestlabs/mgmt/2018-09-15/dtl"
16 )
17
18 const (
19 DefaultBaseURI = original.DefaultBaseURI
20 )
21
22 type CostThresholdStatus = original.CostThresholdStatus
23
24 const (
25 Disabled CostThresholdStatus = original.Disabled
26 Enabled CostThresholdStatus = original.Enabled
27 )
28
29 type CostType = original.CostType
30
31 const (
32 Projected CostType = original.Projected
33 Reported CostType = original.Reported
34 Unavailable CostType = original.Unavailable
35 )
36
37 type CustomImageOsType = original.CustomImageOsType
38
39 const (
40 Linux CustomImageOsType = original.Linux
41 None CustomImageOsType = original.None
42 Windows CustomImageOsType = original.Windows
43 )
44
45 type EnableStatus = original.EnableStatus
46
47 const (
48 EnableStatusDisabled EnableStatus = original.EnableStatusDisabled
49 EnableStatusEnabled EnableStatus = original.EnableStatusEnabled
50 )
51
52 type EnvironmentPermission = original.EnvironmentPermission
53
54 const (
55 Contributor EnvironmentPermission = original.Contributor
56 Reader EnvironmentPermission = original.Reader
57 )
58
59 type FileUploadOptions = original.FileUploadOptions
60
61 const (
62 FileUploadOptionsNone FileUploadOptions = original.FileUploadOptionsNone
63 FileUploadOptionsUploadFilesAndGenerateSasTokens FileUploadOptions = original.FileUploadOptionsUploadFilesAndGenerateSasTokens
64 )
65
66 type HTTPStatusCode = original.HTTPStatusCode
67
68 const (
69 Accepted HTTPStatusCode = original.Accepted
70 BadGateway HTTPStatusCode = original.BadGateway
71 BadRequest HTTPStatusCode = original.BadRequest
72 Conflict HTTPStatusCode = original.Conflict
73 Continue HTTPStatusCode = original.Continue
74 Created HTTPStatusCode = original.Created
75 ExpectationFailed HTTPStatusCode = original.ExpectationFailed
76 Forbidden HTTPStatusCode = original.Forbidden
77 GatewayTimeout HTTPStatusCode = original.GatewayTimeout
78 Gone HTTPStatusCode = original.Gone
79 HTTPVersionNotSupported HTTPStatusCode = original.HTTPVersionNotSupported
80 InternalServerError HTTPStatusCode = original.InternalServerError
81 LengthRequired HTTPStatusCode = original.LengthRequired
82 MethodNotAllowed HTTPStatusCode = original.MethodNotAllowed
83 MovedPermanently HTTPStatusCode = original.MovedPermanently
84 MultipleChoices HTTPStatusCode = original.MultipleChoices
85 NoContent HTTPStatusCode = original.NoContent
86 NonAuthoritativeInformation HTTPStatusCode = original.NonAuthoritativeInformation
87 NotAcceptable HTTPStatusCode = original.NotAcceptable
88 NotFound HTTPStatusCode = original.NotFound
89 NotImplemented HTTPStatusCode = original.NotImplemented
90 NotModified HTTPStatusCode = original.NotModified
91 OK HTTPStatusCode = original.OK
92 PartialContent HTTPStatusCode = original.PartialContent
93 PaymentRequired HTTPStatusCode = original.PaymentRequired
94 PreconditionFailed HTTPStatusCode = original.PreconditionFailed
95 ProxyAuthenticationRequired HTTPStatusCode = original.ProxyAuthenticationRequired
96 Redirect HTTPStatusCode = original.Redirect
97 RequestedRangeNotSatisfiable HTTPStatusCode = original.RequestedRangeNotSatisfiable
98 RequestEntityTooLarge HTTPStatusCode = original.RequestEntityTooLarge
99 RequestTimeout HTTPStatusCode = original.RequestTimeout
100 RequestURITooLong HTTPStatusCode = original.RequestURITooLong
101 ResetContent HTTPStatusCode = original.ResetContent
102 SeeOther HTTPStatusCode = original.SeeOther
103 ServiceUnavailable HTTPStatusCode = original.ServiceUnavailable
104 SwitchingProtocols HTTPStatusCode = original.SwitchingProtocols
105 TemporaryRedirect HTTPStatusCode = original.TemporaryRedirect
106 Unauthorized HTTPStatusCode = original.Unauthorized
107 UnsupportedMediaType HTTPStatusCode = original.UnsupportedMediaType
108 Unused HTTPStatusCode = original.Unused
109 UpgradeRequired HTTPStatusCode = original.UpgradeRequired
110 UseProxy HTTPStatusCode = original.UseProxy
111 )
112
113 type HostCachingOptions = original.HostCachingOptions
114
115 const (
116 HostCachingOptionsNone HostCachingOptions = original.HostCachingOptionsNone
117 HostCachingOptionsReadOnly HostCachingOptions = original.HostCachingOptionsReadOnly
118 HostCachingOptionsReadWrite HostCachingOptions = original.HostCachingOptionsReadWrite
119 )
120
121 type LinuxOsState = original.LinuxOsState
122
123 const (
124 DeprovisionApplied LinuxOsState = original.DeprovisionApplied
125 DeprovisionRequested LinuxOsState = original.DeprovisionRequested
126 NonDeprovisioned LinuxOsState = original.NonDeprovisioned
127 )
128
129 type NotificationChannelEventType = original.NotificationChannelEventType
130
131 const (
132 AutoShutdown NotificationChannelEventType = original.AutoShutdown
133 Cost NotificationChannelEventType = original.Cost
134 )
135
136 type PolicyEvaluatorType = original.PolicyEvaluatorType
137
138 const (
139 AllowedValuesPolicy PolicyEvaluatorType = original.AllowedValuesPolicy
140 MaxValuePolicy PolicyEvaluatorType = original.MaxValuePolicy
141 )
142
143 type PolicyFactName = original.PolicyFactName
144
145 const (
146 PolicyFactNameEnvironmentTemplate PolicyFactName = original.PolicyFactNameEnvironmentTemplate
147 PolicyFactNameGalleryImage PolicyFactName = original.PolicyFactNameGalleryImage
148 PolicyFactNameLabPremiumVMCount PolicyFactName = original.PolicyFactNameLabPremiumVMCount
149 PolicyFactNameLabTargetCost PolicyFactName = original.PolicyFactNameLabTargetCost
150 PolicyFactNameLabVMCount PolicyFactName = original.PolicyFactNameLabVMCount
151 PolicyFactNameLabVMSize PolicyFactName = original.PolicyFactNameLabVMSize
152 PolicyFactNameScheduleEditPermission PolicyFactName = original.PolicyFactNameScheduleEditPermission
153 PolicyFactNameUserOwnedLabPremiumVMCount PolicyFactName = original.PolicyFactNameUserOwnedLabPremiumVMCount
154 PolicyFactNameUserOwnedLabVMCount PolicyFactName = original.PolicyFactNameUserOwnedLabVMCount
155 PolicyFactNameUserOwnedLabVMCountInSubnet PolicyFactName = original.PolicyFactNameUserOwnedLabVMCountInSubnet
156 )
157
158 type PolicyStatus = original.PolicyStatus
159
160 const (
161 PolicyStatusDisabled PolicyStatus = original.PolicyStatusDisabled
162 PolicyStatusEnabled PolicyStatus = original.PolicyStatusEnabled
163 )
164
165 type PremiumDataDisk = original.PremiumDataDisk
166
167 const (
168 PremiumDataDiskDisabled PremiumDataDisk = original.PremiumDataDiskDisabled
169 PremiumDataDiskEnabled PremiumDataDisk = original.PremiumDataDiskEnabled
170 )
171
172 type ReportingCycleType = original.ReportingCycleType
173
174 const (
175 CalendarMonth ReportingCycleType = original.CalendarMonth
176 Custom ReportingCycleType = original.Custom
177 )
178
179 type SourceControlType = original.SourceControlType
180
181 const (
182 GitHub SourceControlType = original.GitHub
183 VsoGit SourceControlType = original.VsoGit
184 )
185
186 type StorageType = original.StorageType
187
188 const (
189 Premium StorageType = original.Premium
190 Standard StorageType = original.Standard
191 StandardSSD StorageType = original.StandardSSD
192 )
193
194 type TargetCostStatus = original.TargetCostStatus
195
196 const (
197 TargetCostStatusDisabled TargetCostStatus = original.TargetCostStatusDisabled
198 TargetCostStatusEnabled TargetCostStatus = original.TargetCostStatusEnabled
199 )
200
201 type TransportProtocol = original.TransportProtocol
202
203 const (
204 TCP TransportProtocol = original.TCP
205 UDP TransportProtocol = original.UDP
206 )
207
208 type UsagePermissionType = original.UsagePermissionType
209
210 const (
211 Allow UsagePermissionType = original.Allow
212 Default UsagePermissionType = original.Default
213 Deny UsagePermissionType = original.Deny
214 )
215
216 type VirtualMachineCreationSource = original.VirtualMachineCreationSource
217
218 const (
219 FromCustomImage VirtualMachineCreationSource = original.FromCustomImage
220 FromGalleryImage VirtualMachineCreationSource = original.FromGalleryImage
221 FromSharedGalleryImage VirtualMachineCreationSource = original.FromSharedGalleryImage
222 )
223
224 type WindowsOsState = original.WindowsOsState
225
226 const (
227 NonSysprepped WindowsOsState = original.NonSysprepped
228 SysprepApplied WindowsOsState = original.SysprepApplied
229 SysprepRequested WindowsOsState = original.SysprepRequested
230 )
231
232 type ApplicableSchedule = original.ApplicableSchedule
233 type ApplicableScheduleFragment = original.ApplicableScheduleFragment
234 type ApplicableScheduleProperties = original.ApplicableScheduleProperties
235 type ApplicableSchedulePropertiesFragment = original.ApplicableSchedulePropertiesFragment
236 type ApplyArtifactsRequest = original.ApplyArtifactsRequest
237 type ArmTemplate = original.ArmTemplate
238 type ArmTemplateInfo = original.ArmTemplateInfo
239 type ArmTemplateList = original.ArmTemplateList
240 type ArmTemplateListIterator = original.ArmTemplateListIterator
241 type ArmTemplateListPage = original.ArmTemplateListPage
242 type ArmTemplateParameterProperties = original.ArmTemplateParameterProperties
243 type ArmTemplateParameterPropertiesFragment = original.ArmTemplateParameterPropertiesFragment
244 type ArmTemplateProperties = original.ArmTemplateProperties
245 type ArmTemplatesClient = original.ArmTemplatesClient
246 type Artifact = original.Artifact
247 type ArtifactDeploymentStatusProperties = original.ArtifactDeploymentStatusProperties
248 type ArtifactDeploymentStatusPropertiesFragment = original.ArtifactDeploymentStatusPropertiesFragment
249 type ArtifactInstallProperties = original.ArtifactInstallProperties
250 type ArtifactInstallPropertiesFragment = original.ArtifactInstallPropertiesFragment
251 type ArtifactList = original.ArtifactList
252 type ArtifactListIterator = original.ArtifactListIterator
253 type ArtifactListPage = original.ArtifactListPage
254 type ArtifactParameterProperties = original.ArtifactParameterProperties
255 type ArtifactParameterPropertiesFragment = original.ArtifactParameterPropertiesFragment
256 type ArtifactProperties = original.ArtifactProperties
257 type ArtifactSource = original.ArtifactSource
258 type ArtifactSourceFragment = original.ArtifactSourceFragment
259 type ArtifactSourceList = original.ArtifactSourceList
260 type ArtifactSourceListIterator = original.ArtifactSourceListIterator
261 type ArtifactSourceListPage = original.ArtifactSourceListPage
262 type ArtifactSourceProperties = original.ArtifactSourceProperties
263 type ArtifactSourcePropertiesFragment = original.ArtifactSourcePropertiesFragment
264 type ArtifactSourcesClient = original.ArtifactSourcesClient
265 type ArtifactsClient = original.ArtifactsClient
266 type AttachDiskProperties = original.AttachDiskProperties
267 type AttachNewDataDiskOptions = original.AttachNewDataDiskOptions
268 type AttachNewDataDiskOptionsFragment = original.AttachNewDataDiskOptionsFragment
269 type BaseClient = original.BaseClient
270 type BulkCreationParameters = original.BulkCreationParameters
271 type BulkCreationParametersFragment = original.BulkCreationParametersFragment
272 type CloudError = original.CloudError
273 type CloudErrorBody = original.CloudErrorBody
274 type ComputeDataDisk = original.ComputeDataDisk
275 type ComputeDataDiskFragment = original.ComputeDataDiskFragment
276 type ComputeVMInstanceViewStatus = original.ComputeVMInstanceViewStatus
277 type ComputeVMInstanceViewStatusFragment = original.ComputeVMInstanceViewStatusFragment
278 type ComputeVMProperties = original.ComputeVMProperties
279 type ComputeVMPropertiesFragment = original.ComputeVMPropertiesFragment
280 type CostThresholdProperties = original.CostThresholdProperties
281 type CostsClient = original.CostsClient
282 type CustomImage = original.CustomImage
283 type CustomImageFragment = original.CustomImageFragment
284 type CustomImageList = original.CustomImageList
285 type CustomImageListIterator = original.CustomImageListIterator
286 type CustomImageListPage = original.CustomImageListPage
287 type CustomImageProperties = original.CustomImageProperties
288 type CustomImagePropertiesCustom = original.CustomImagePropertiesCustom
289 type CustomImagePropertiesCustomFragment = original.CustomImagePropertiesCustomFragment
290 type CustomImagePropertiesFragment = original.CustomImagePropertiesFragment
291 type CustomImagePropertiesFromPlan = original.CustomImagePropertiesFromPlan
292 type CustomImagePropertiesFromPlanFragment = original.CustomImagePropertiesFromPlanFragment
293 type CustomImagePropertiesFromVM = original.CustomImagePropertiesFromVM
294 type CustomImagePropertiesFromVMFragment = original.CustomImagePropertiesFromVMFragment
295 type CustomImagesClient = original.CustomImagesClient
296 type CustomImagesCreateOrUpdateFuture = original.CustomImagesCreateOrUpdateFuture
297 type CustomImagesDeleteFuture = original.CustomImagesDeleteFuture
298 type DataDiskProperties = original.DataDiskProperties
299 type DataDiskPropertiesFragment = original.DataDiskPropertiesFragment
300 type DataDiskStorageTypeInfo = original.DataDiskStorageTypeInfo
301 type DataDiskStorageTypeInfoFragment = original.DataDiskStorageTypeInfoFragment
302 type DayDetails = original.DayDetails
303 type DayDetailsFragment = original.DayDetailsFragment
304 type DetachDataDiskProperties = original.DetachDataDiskProperties
305 type DetachDiskProperties = original.DetachDiskProperties
306 type Disk = original.Disk
307 type DiskFragment = original.DiskFragment
308 type DiskList = original.DiskList
309 type DiskListIterator = original.DiskListIterator
310 type DiskListPage = original.DiskListPage
311 type DiskProperties = original.DiskProperties
312 type DiskPropertiesFragment = original.DiskPropertiesFragment
313 type DisksAttachFuture = original.DisksAttachFuture
314 type DisksClient = original.DisksClient
315 type DisksCreateOrUpdateFuture = original.DisksCreateOrUpdateFuture
316 type DisksDeleteFuture = original.DisksDeleteFuture
317 type DisksDetachFuture = original.DisksDetachFuture
318 type Environment = original.Environment
319 type EnvironmentDeploymentProperties = original.EnvironmentDeploymentProperties
320 type EnvironmentDeploymentPropertiesFragment = original.EnvironmentDeploymentPropertiesFragment
321 type EnvironmentFragment = original.EnvironmentFragment
322 type EnvironmentList = original.EnvironmentList
323 type EnvironmentListIterator = original.EnvironmentListIterator
324 type EnvironmentListPage = original.EnvironmentListPage
325 type EnvironmentProperties = original.EnvironmentProperties
326 type EnvironmentPropertiesFragment = original.EnvironmentPropertiesFragment
327 type EnvironmentsClient = original.EnvironmentsClient
328 type EnvironmentsCreateOrUpdateFuture = original.EnvironmentsCreateOrUpdateFuture
329 type EnvironmentsDeleteFuture = original.EnvironmentsDeleteFuture
330 type EvaluatePoliciesProperties = original.EvaluatePoliciesProperties
331 type EvaluatePoliciesRequest = original.EvaluatePoliciesRequest
332 type EvaluatePoliciesResponse = original.EvaluatePoliciesResponse
333 type Event = original.Event
334 type EventFragment = original.EventFragment
335 type ExportResourceUsageParameters = original.ExportResourceUsageParameters
336 type ExternalSubnet = original.ExternalSubnet
337 type ExternalSubnetFragment = original.ExternalSubnetFragment
338 type Formula = original.Formula
339 type FormulaFragment = original.FormulaFragment
340 type FormulaList = original.FormulaList
341 type FormulaListIterator = original.FormulaListIterator
342 type FormulaListPage = original.FormulaListPage
343 type FormulaProperties = original.FormulaProperties
344 type FormulaPropertiesFragment = original.FormulaPropertiesFragment
345 type FormulaPropertiesFromVM = original.FormulaPropertiesFromVM
346 type FormulaPropertiesFromVMFragment = original.FormulaPropertiesFromVMFragment
347 type FormulasClient = original.FormulasClient
348 type FormulasCreateOrUpdateFuture = original.FormulasCreateOrUpdateFuture
349 type GalleryImage = original.GalleryImage
350 type GalleryImageList = original.GalleryImageList
351 type GalleryImageListIterator = original.GalleryImageListIterator
352 type GalleryImageListPage = original.GalleryImageListPage
353 type GalleryImageProperties = original.GalleryImageProperties
354 type GalleryImageReference = original.GalleryImageReference
355 type GalleryImageReferenceFragment = original.GalleryImageReferenceFragment
356 type GalleryImagesClient = original.GalleryImagesClient
357 type GenerateArmTemplateRequest = original.GenerateArmTemplateRequest
358 type GenerateUploadURIParameter = original.GenerateUploadURIParameter
359 type GenerateUploadURIResponse = original.GenerateUploadURIResponse
360 type GlobalSchedulesClient = original.GlobalSchedulesClient
361 type GlobalSchedulesExecuteFuture = original.GlobalSchedulesExecuteFuture
362 type GlobalSchedulesRetargetFuture = original.GlobalSchedulesRetargetFuture
363 type HourDetails = original.HourDetails
364 type HourDetailsFragment = original.HourDetailsFragment
365 type IdentityProperties = original.IdentityProperties
366 type ImportLabVirtualMachineRequest = original.ImportLabVirtualMachineRequest
367 type InboundNatRule = original.InboundNatRule
368 type InboundNatRuleFragment = original.InboundNatRuleFragment
369 type Lab = original.Lab
370 type LabAnnouncementProperties = original.LabAnnouncementProperties
371 type LabAnnouncementPropertiesFragment = original.LabAnnouncementPropertiesFragment
372 type LabCost = original.LabCost
373 type LabCostDetailsProperties = original.LabCostDetailsProperties
374 type LabCostProperties = original.LabCostProperties
375 type LabCostSummaryProperties = original.LabCostSummaryProperties
376 type LabFragment = original.LabFragment
377 type LabList = original.LabList
378 type LabListIterator = original.LabListIterator
379 type LabListPage = original.LabListPage
380 type LabProperties = original.LabProperties
381 type LabPropertiesFragment = original.LabPropertiesFragment
382 type LabResourceCostProperties = original.LabResourceCostProperties
383 type LabSupportProperties = original.LabSupportProperties
384 type LabSupportPropertiesFragment = original.LabSupportPropertiesFragment
385 type LabVhd = original.LabVhd
386 type LabVhdList = original.LabVhdList
387 type LabVhdListIterator = original.LabVhdListIterator
388 type LabVhdListPage = original.LabVhdListPage
389 type LabVirtualMachine = original.LabVirtualMachine
390 type LabVirtualMachineCreationParameter = original.LabVirtualMachineCreationParameter
391 type LabVirtualMachineCreationParameterFragment = original.LabVirtualMachineCreationParameterFragment
392 type LabVirtualMachineCreationParameterProperties = original.LabVirtualMachineCreationParameterProperties
393 type LabVirtualMachineCreationParameterPropertiesFragment = original.LabVirtualMachineCreationParameterPropertiesFragment
394 type LabVirtualMachineFragment = original.LabVirtualMachineFragment
395 type LabVirtualMachineList = original.LabVirtualMachineList
396 type LabVirtualMachineListIterator = original.LabVirtualMachineListIterator
397 type LabVirtualMachineListPage = original.LabVirtualMachineListPage
398 type LabVirtualMachineProperties = original.LabVirtualMachineProperties
399 type LabVirtualMachinePropertiesFragment = original.LabVirtualMachinePropertiesFragment
400 type LabsClaimAnyVMFuture = original.LabsClaimAnyVMFuture
401 type LabsClient = original.LabsClient
402 type LabsCreateEnvironmentFuture = original.LabsCreateEnvironmentFuture
403 type LabsCreateOrUpdateFuture = original.LabsCreateOrUpdateFuture
404 type LabsDeleteFuture = original.LabsDeleteFuture
405 type LabsExportResourceUsageFuture = original.LabsExportResourceUsageFuture
406 type LabsImportVirtualMachineFuture = original.LabsImportVirtualMachineFuture
407 type LinuxOsInfo = original.LinuxOsInfo
408 type LinuxOsInfoFragment = original.LinuxOsInfoFragment
409 type NetworkInterfaceProperties = original.NetworkInterfaceProperties
410 type NetworkInterfacePropertiesFragment = original.NetworkInterfacePropertiesFragment
411 type NotificationChannel = original.NotificationChannel
412 type NotificationChannelFragment = original.NotificationChannelFragment
413 type NotificationChannelList = original.NotificationChannelList
414 type NotificationChannelListIterator = original.NotificationChannelListIterator
415 type NotificationChannelListPage = original.NotificationChannelListPage
416 type NotificationChannelProperties = original.NotificationChannelProperties
417 type NotificationChannelPropertiesFragment = original.NotificationChannelPropertiesFragment
418 type NotificationChannelsClient = original.NotificationChannelsClient
419 type NotificationSettings = original.NotificationSettings
420 type NotificationSettingsFragment = original.NotificationSettingsFragment
421 type NotifyParameters = original.NotifyParameters
422 type OperationError = original.OperationError
423 type OperationMetadata = original.OperationMetadata
424 type OperationMetadataDisplay = original.OperationMetadataDisplay
425 type OperationResult = original.OperationResult
426 type OperationsClient = original.OperationsClient
427 type ParameterInfo = original.ParameterInfo
428 type ParametersValueFileInfo = original.ParametersValueFileInfo
429 type PercentageCostThresholdProperties = original.PercentageCostThresholdProperties
430 type PoliciesClient = original.PoliciesClient
431 type Policy = original.Policy
432 type PolicyFragment = original.PolicyFragment
433 type PolicyList = original.PolicyList
434 type PolicyListIterator = original.PolicyListIterator
435 type PolicyListPage = original.PolicyListPage
436 type PolicyProperties = original.PolicyProperties
437 type PolicyPropertiesFragment = original.PolicyPropertiesFragment
438 type PolicySetResult = original.PolicySetResult
439 type PolicySetsClient = original.PolicySetsClient
440 type PolicyViolation = original.PolicyViolation
441 type Port = original.Port
442 type PortFragment = original.PortFragment
443 type ProviderOperationResult = original.ProviderOperationResult
444 type ProviderOperationResultIterator = original.ProviderOperationResultIterator
445 type ProviderOperationResultPage = original.ProviderOperationResultPage
446 type ProviderOperationsClient = original.ProviderOperationsClient
447 type RdpConnection = original.RdpConnection
448 type ResizeLabVirtualMachineProperties = original.ResizeLabVirtualMachineProperties
449 type Resource = original.Resource
450 type RetargetScheduleProperties = original.RetargetScheduleProperties
451 type Schedule = original.Schedule
452 type ScheduleCreationParameter = original.ScheduleCreationParameter
453 type ScheduleCreationParameterFragment = original.ScheduleCreationParameterFragment
454 type ScheduleCreationParameterProperties = original.ScheduleCreationParameterProperties
455 type ScheduleCreationParameterPropertiesFragment = original.ScheduleCreationParameterPropertiesFragment
456 type ScheduleFragment = original.ScheduleFragment
457 type ScheduleList = original.ScheduleList
458 type ScheduleListIterator = original.ScheduleListIterator
459 type ScheduleListPage = original.ScheduleListPage
460 type ScheduleProperties = original.ScheduleProperties
461 type SchedulePropertiesFragment = original.SchedulePropertiesFragment
462 type SchedulesClient = original.SchedulesClient
463 type SchedulesExecuteFuture = original.SchedulesExecuteFuture
464 type Secret = original.Secret
465 type SecretFragment = original.SecretFragment
466 type SecretList = original.SecretList
467 type SecretListIterator = original.SecretListIterator
468 type SecretListPage = original.SecretListPage
469 type SecretProperties = original.SecretProperties
470 type SecretPropertiesFragment = original.SecretPropertiesFragment
471 type SecretsClient = original.SecretsClient
472 type SecretsCreateOrUpdateFuture = original.SecretsCreateOrUpdateFuture
473 type ServiceFabric = original.ServiceFabric
474 type ServiceFabricFragment = original.ServiceFabricFragment
475 type ServiceFabricList = original.ServiceFabricList
476 type ServiceFabricListIterator = original.ServiceFabricListIterator
477 type ServiceFabricListPage = original.ServiceFabricListPage
478 type ServiceFabricProperties = original.ServiceFabricProperties
479 type ServiceFabricPropertiesFragment = original.ServiceFabricPropertiesFragment
480 type ServiceFabricSchedulesClient = original.ServiceFabricSchedulesClient
481 type ServiceFabricSchedulesExecuteFuture = original.ServiceFabricSchedulesExecuteFuture
482 type ServiceFabricsClient = original.ServiceFabricsClient
483 type ServiceFabricsCreateOrUpdateFuture = original.ServiceFabricsCreateOrUpdateFuture
484 type ServiceFabricsDeleteFuture = original.ServiceFabricsDeleteFuture
485 type ServiceFabricsStartFuture = original.ServiceFabricsStartFuture
486 type ServiceFabricsStopFuture = original.ServiceFabricsStopFuture
487 type ServiceRunner = original.ServiceRunner
488 type ServiceRunnersClient = original.ServiceRunnersClient
489 type SharedPublicIPAddressConfiguration = original.SharedPublicIPAddressConfiguration
490 type SharedPublicIPAddressConfigurationFragment = original.SharedPublicIPAddressConfigurationFragment
491 type ShutdownNotificationContent = original.ShutdownNotificationContent
492 type Subnet = original.Subnet
493 type SubnetFragment = original.SubnetFragment
494 type SubnetOverride = original.SubnetOverride
495 type SubnetOverrideFragment = original.SubnetOverrideFragment
496 type SubnetSharedPublicIPAddressConfiguration = original.SubnetSharedPublicIPAddressConfiguration
497 type SubnetSharedPublicIPAddressConfigurationFragment = original.SubnetSharedPublicIPAddressConfigurationFragment
498 type TargetCostProperties = original.TargetCostProperties
499 type UpdateResource = original.UpdateResource
500 type User = original.User
501 type UserFragment = original.UserFragment
502 type UserIdentity = original.UserIdentity
503 type UserIdentityFragment = original.UserIdentityFragment
504 type UserList = original.UserList
505 type UserListIterator = original.UserListIterator
506 type UserListPage = original.UserListPage
507 type UserProperties = original.UserProperties
508 type UserPropertiesFragment = original.UserPropertiesFragment
509 type UserSecretStore = original.UserSecretStore
510 type UserSecretStoreFragment = original.UserSecretStoreFragment
511 type UsersClient = original.UsersClient
512 type UsersCreateOrUpdateFuture = original.UsersCreateOrUpdateFuture
513 type UsersDeleteFuture = original.UsersDeleteFuture
514 type VirtualMachineSchedulesClient = original.VirtualMachineSchedulesClient
515 type VirtualMachineSchedulesExecuteFuture = original.VirtualMachineSchedulesExecuteFuture
516 type VirtualMachinesAddDataDiskFuture = original.VirtualMachinesAddDataDiskFuture
517 type VirtualMachinesApplyArtifactsFuture = original.VirtualMachinesApplyArtifactsFuture
518 type VirtualMachinesClaimFuture = original.VirtualMachinesClaimFuture
519 type VirtualMachinesClient = original.VirtualMachinesClient
520 type VirtualMachinesCreateOrUpdateFuture = original.VirtualMachinesCreateOrUpdateFuture
521 type VirtualMachinesDeleteFuture = original.VirtualMachinesDeleteFuture
522 type VirtualMachinesDetachDataDiskFuture = original.VirtualMachinesDetachDataDiskFuture
523 type VirtualMachinesRedeployFuture = original.VirtualMachinesRedeployFuture
524 type VirtualMachinesResizeFuture = original.VirtualMachinesResizeFuture
525 type VirtualMachinesRestartFuture = original.VirtualMachinesRestartFuture
526 type VirtualMachinesStartFuture = original.VirtualMachinesStartFuture
527 type VirtualMachinesStopFuture = original.VirtualMachinesStopFuture
528 type VirtualMachinesTransferDisksFuture = original.VirtualMachinesTransferDisksFuture
529 type VirtualMachinesUnClaimFuture = original.VirtualMachinesUnClaimFuture
530 type VirtualNetwork = original.VirtualNetwork
531 type VirtualNetworkFragment = original.VirtualNetworkFragment
532 type VirtualNetworkList = original.VirtualNetworkList
533 type VirtualNetworkListIterator = original.VirtualNetworkListIterator
534 type VirtualNetworkListPage = original.VirtualNetworkListPage
535 type VirtualNetworkProperties = original.VirtualNetworkProperties
536 type VirtualNetworkPropertiesFragment = original.VirtualNetworkPropertiesFragment
537 type VirtualNetworksClient = original.VirtualNetworksClient
538 type VirtualNetworksCreateOrUpdateFuture = original.VirtualNetworksCreateOrUpdateFuture
539 type VirtualNetworksDeleteFuture = original.VirtualNetworksDeleteFuture
540 type WeekDetails = original.WeekDetails
541 type WeekDetailsFragment = original.WeekDetailsFragment
542 type WindowsOsInfo = original.WindowsOsInfo
543 type WindowsOsInfoFragment = original.WindowsOsInfoFragment
544
545 func New(subscriptionID string) BaseClient {
546 return original.New(subscriptionID)
547 }
548 func NewArmTemplateListIterator(page ArmTemplateListPage) ArmTemplateListIterator {
549 return original.NewArmTemplateListIterator(page)
550 }
551 func NewArmTemplateListPage(cur ArmTemplateList, getNextPage func(context.Context, ArmTemplateList) (ArmTemplateList, error)) ArmTemplateListPage {
552 return original.NewArmTemplateListPage(cur, getNextPage)
553 }
554 func NewArmTemplatesClient(subscriptionID string) ArmTemplatesClient {
555 return original.NewArmTemplatesClient(subscriptionID)
556 }
557 func NewArmTemplatesClientWithBaseURI(baseURI string, subscriptionID string) ArmTemplatesClient {
558 return original.NewArmTemplatesClientWithBaseURI(baseURI, subscriptionID)
559 }
560 func NewArtifactListIterator(page ArtifactListPage) ArtifactListIterator {
561 return original.NewArtifactListIterator(page)
562 }
563 func NewArtifactListPage(cur ArtifactList, getNextPage func(context.Context, ArtifactList) (ArtifactList, error)) ArtifactListPage {
564 return original.NewArtifactListPage(cur, getNextPage)
565 }
566 func NewArtifactSourceListIterator(page ArtifactSourceListPage) ArtifactSourceListIterator {
567 return original.NewArtifactSourceListIterator(page)
568 }
569 func NewArtifactSourceListPage(cur ArtifactSourceList, getNextPage func(context.Context, ArtifactSourceList) (ArtifactSourceList, error)) ArtifactSourceListPage {
570 return original.NewArtifactSourceListPage(cur, getNextPage)
571 }
572 func NewArtifactSourcesClient(subscriptionID string) ArtifactSourcesClient {
573 return original.NewArtifactSourcesClient(subscriptionID)
574 }
575 func NewArtifactSourcesClientWithBaseURI(baseURI string, subscriptionID string) ArtifactSourcesClient {
576 return original.NewArtifactSourcesClientWithBaseURI(baseURI, subscriptionID)
577 }
578 func NewArtifactsClient(subscriptionID string) ArtifactsClient {
579 return original.NewArtifactsClient(subscriptionID)
580 }
581 func NewArtifactsClientWithBaseURI(baseURI string, subscriptionID string) ArtifactsClient {
582 return original.NewArtifactsClientWithBaseURI(baseURI, subscriptionID)
583 }
584 func NewCostsClient(subscriptionID string) CostsClient {
585 return original.NewCostsClient(subscriptionID)
586 }
587 func NewCostsClientWithBaseURI(baseURI string, subscriptionID string) CostsClient {
588 return original.NewCostsClientWithBaseURI(baseURI, subscriptionID)
589 }
590 func NewCustomImageListIterator(page CustomImageListPage) CustomImageListIterator {
591 return original.NewCustomImageListIterator(page)
592 }
593 func NewCustomImageListPage(cur CustomImageList, getNextPage func(context.Context, CustomImageList) (CustomImageList, error)) CustomImageListPage {
594 return original.NewCustomImageListPage(cur, getNextPage)
595 }
596 func NewCustomImagesClient(subscriptionID string) CustomImagesClient {
597 return original.NewCustomImagesClient(subscriptionID)
598 }
599 func NewCustomImagesClientWithBaseURI(baseURI string, subscriptionID string) CustomImagesClient {
600 return original.NewCustomImagesClientWithBaseURI(baseURI, subscriptionID)
601 }
602 func NewDiskListIterator(page DiskListPage) DiskListIterator {
603 return original.NewDiskListIterator(page)
604 }
605 func NewDiskListPage(cur DiskList, getNextPage func(context.Context, DiskList) (DiskList, error)) DiskListPage {
606 return original.NewDiskListPage(cur, getNextPage)
607 }
608 func NewDisksClient(subscriptionID string) DisksClient {
609 return original.NewDisksClient(subscriptionID)
610 }
611 func NewDisksClientWithBaseURI(baseURI string, subscriptionID string) DisksClient {
612 return original.NewDisksClientWithBaseURI(baseURI, subscriptionID)
613 }
614 func NewEnvironmentListIterator(page EnvironmentListPage) EnvironmentListIterator {
615 return original.NewEnvironmentListIterator(page)
616 }
617 func NewEnvironmentListPage(cur EnvironmentList, getNextPage func(context.Context, EnvironmentList) (EnvironmentList, error)) EnvironmentListPage {
618 return original.NewEnvironmentListPage(cur, getNextPage)
619 }
620 func NewEnvironmentsClient(subscriptionID string) EnvironmentsClient {
621 return original.NewEnvironmentsClient(subscriptionID)
622 }
623 func NewEnvironmentsClientWithBaseURI(baseURI string, subscriptionID string) EnvironmentsClient {
624 return original.NewEnvironmentsClientWithBaseURI(baseURI, subscriptionID)
625 }
626 func NewFormulaListIterator(page FormulaListPage) FormulaListIterator {
627 return original.NewFormulaListIterator(page)
628 }
629 func NewFormulaListPage(cur FormulaList, getNextPage func(context.Context, FormulaList) (FormulaList, error)) FormulaListPage {
630 return original.NewFormulaListPage(cur, getNextPage)
631 }
632 func NewFormulasClient(subscriptionID string) FormulasClient {
633 return original.NewFormulasClient(subscriptionID)
634 }
635 func NewFormulasClientWithBaseURI(baseURI string, subscriptionID string) FormulasClient {
636 return original.NewFormulasClientWithBaseURI(baseURI, subscriptionID)
637 }
638 func NewGalleryImageListIterator(page GalleryImageListPage) GalleryImageListIterator {
639 return original.NewGalleryImageListIterator(page)
640 }
641 func NewGalleryImageListPage(cur GalleryImageList, getNextPage func(context.Context, GalleryImageList) (GalleryImageList, error)) GalleryImageListPage {
642 return original.NewGalleryImageListPage(cur, getNextPage)
643 }
644 func NewGalleryImagesClient(subscriptionID string) GalleryImagesClient {
645 return original.NewGalleryImagesClient(subscriptionID)
646 }
647 func NewGalleryImagesClientWithBaseURI(baseURI string, subscriptionID string) GalleryImagesClient {
648 return original.NewGalleryImagesClientWithBaseURI(baseURI, subscriptionID)
649 }
650 func NewGlobalSchedulesClient(subscriptionID string) GlobalSchedulesClient {
651 return original.NewGlobalSchedulesClient(subscriptionID)
652 }
653 func NewGlobalSchedulesClientWithBaseURI(baseURI string, subscriptionID string) GlobalSchedulesClient {
654 return original.NewGlobalSchedulesClientWithBaseURI(baseURI, subscriptionID)
655 }
656 func NewLabListIterator(page LabListPage) LabListIterator {
657 return original.NewLabListIterator(page)
658 }
659 func NewLabListPage(cur LabList, getNextPage func(context.Context, LabList) (LabList, error)) LabListPage {
660 return original.NewLabListPage(cur, getNextPage)
661 }
662 func NewLabVhdListIterator(page LabVhdListPage) LabVhdListIterator {
663 return original.NewLabVhdListIterator(page)
664 }
665 func NewLabVhdListPage(cur LabVhdList, getNextPage func(context.Context, LabVhdList) (LabVhdList, error)) LabVhdListPage {
666 return original.NewLabVhdListPage(cur, getNextPage)
667 }
668 func NewLabVirtualMachineListIterator(page LabVirtualMachineListPage) LabVirtualMachineListIterator {
669 return original.NewLabVirtualMachineListIterator(page)
670 }
671 func NewLabVirtualMachineListPage(cur LabVirtualMachineList, getNextPage func(context.Context, LabVirtualMachineList) (LabVirtualMachineList, error)) LabVirtualMachineListPage {
672 return original.NewLabVirtualMachineListPage(cur, getNextPage)
673 }
674 func NewLabsClient(subscriptionID string) LabsClient {
675 return original.NewLabsClient(subscriptionID)
676 }
677 func NewLabsClientWithBaseURI(baseURI string, subscriptionID string) LabsClient {
678 return original.NewLabsClientWithBaseURI(baseURI, subscriptionID)
679 }
680 func NewNotificationChannelListIterator(page NotificationChannelListPage) NotificationChannelListIterator {
681 return original.NewNotificationChannelListIterator(page)
682 }
683 func NewNotificationChannelListPage(cur NotificationChannelList, getNextPage func(context.Context, NotificationChannelList) (NotificationChannelList, error)) NotificationChannelListPage {
684 return original.NewNotificationChannelListPage(cur, getNextPage)
685 }
686 func NewNotificationChannelsClient(subscriptionID string) NotificationChannelsClient {
687 return original.NewNotificationChannelsClient(subscriptionID)
688 }
689 func NewNotificationChannelsClientWithBaseURI(baseURI string, subscriptionID string) NotificationChannelsClient {
690 return original.NewNotificationChannelsClientWithBaseURI(baseURI, subscriptionID)
691 }
692 func NewOperationsClient(subscriptionID string) OperationsClient {
693 return original.NewOperationsClient(subscriptionID)
694 }
695 func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
696 return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID)
697 }
698 func NewPoliciesClient(subscriptionID string) PoliciesClient {
699 return original.NewPoliciesClient(subscriptionID)
700 }
701 func NewPoliciesClientWithBaseURI(baseURI string, subscriptionID string) PoliciesClient {
702 return original.NewPoliciesClientWithBaseURI(baseURI, subscriptionID)
703 }
704 func NewPolicyListIterator(page PolicyListPage) PolicyListIterator {
705 return original.NewPolicyListIterator(page)
706 }
707 func NewPolicyListPage(cur PolicyList, getNextPage func(context.Context, PolicyList) (PolicyList, error)) PolicyListPage {
708 return original.NewPolicyListPage(cur, getNextPage)
709 }
710 func NewPolicySetsClient(subscriptionID string) PolicySetsClient {
711 return original.NewPolicySetsClient(subscriptionID)
712 }
713 func NewPolicySetsClientWithBaseURI(baseURI string, subscriptionID string) PolicySetsClient {
714 return original.NewPolicySetsClientWithBaseURI(baseURI, subscriptionID)
715 }
716 func NewProviderOperationResultIterator(page ProviderOperationResultPage) ProviderOperationResultIterator {
717 return original.NewProviderOperationResultIterator(page)
718 }
719 func NewProviderOperationResultPage(cur ProviderOperationResult, getNextPage func(context.Context, ProviderOperationResult) (ProviderOperationResult, error)) ProviderOperationResultPage {
720 return original.NewProviderOperationResultPage(cur, getNextPage)
721 }
722 func NewProviderOperationsClient(subscriptionID string) ProviderOperationsClient {
723 return original.NewProviderOperationsClient(subscriptionID)
724 }
725 func NewProviderOperationsClientWithBaseURI(baseURI string, subscriptionID string) ProviderOperationsClient {
726 return original.NewProviderOperationsClientWithBaseURI(baseURI, subscriptionID)
727 }
728 func NewScheduleListIterator(page ScheduleListPage) ScheduleListIterator {
729 return original.NewScheduleListIterator(page)
730 }
731 func NewScheduleListPage(cur ScheduleList, getNextPage func(context.Context, ScheduleList) (ScheduleList, error)) ScheduleListPage {
732 return original.NewScheduleListPage(cur, getNextPage)
733 }
734 func NewSchedulesClient(subscriptionID string) SchedulesClient {
735 return original.NewSchedulesClient(subscriptionID)
736 }
737 func NewSchedulesClientWithBaseURI(baseURI string, subscriptionID string) SchedulesClient {
738 return original.NewSchedulesClientWithBaseURI(baseURI, subscriptionID)
739 }
740 func NewSecretListIterator(page SecretListPage) SecretListIterator {
741 return original.NewSecretListIterator(page)
742 }
743 func NewSecretListPage(cur SecretList, getNextPage func(context.Context, SecretList) (SecretList, error)) SecretListPage {
744 return original.NewSecretListPage(cur, getNextPage)
745 }
746 func NewSecretsClient(subscriptionID string) SecretsClient {
747 return original.NewSecretsClient(subscriptionID)
748 }
749 func NewSecretsClientWithBaseURI(baseURI string, subscriptionID string) SecretsClient {
750 return original.NewSecretsClientWithBaseURI(baseURI, subscriptionID)
751 }
752 func NewServiceFabricListIterator(page ServiceFabricListPage) ServiceFabricListIterator {
753 return original.NewServiceFabricListIterator(page)
754 }
755 func NewServiceFabricListPage(cur ServiceFabricList, getNextPage func(context.Context, ServiceFabricList) (ServiceFabricList, error)) ServiceFabricListPage {
756 return original.NewServiceFabricListPage(cur, getNextPage)
757 }
758 func NewServiceFabricSchedulesClient(subscriptionID string) ServiceFabricSchedulesClient {
759 return original.NewServiceFabricSchedulesClient(subscriptionID)
760 }
761 func NewServiceFabricSchedulesClientWithBaseURI(baseURI string, subscriptionID string) ServiceFabricSchedulesClient {
762 return original.NewServiceFabricSchedulesClientWithBaseURI(baseURI, subscriptionID)
763 }
764 func NewServiceFabricsClient(subscriptionID string) ServiceFabricsClient {
765 return original.NewServiceFabricsClient(subscriptionID)
766 }
767 func NewServiceFabricsClientWithBaseURI(baseURI string, subscriptionID string) ServiceFabricsClient {
768 return original.NewServiceFabricsClientWithBaseURI(baseURI, subscriptionID)
769 }
770 func NewServiceRunnersClient(subscriptionID string) ServiceRunnersClient {
771 return original.NewServiceRunnersClient(subscriptionID)
772 }
773 func NewServiceRunnersClientWithBaseURI(baseURI string, subscriptionID string) ServiceRunnersClient {
774 return original.NewServiceRunnersClientWithBaseURI(baseURI, subscriptionID)
775 }
776 func NewUserListIterator(page UserListPage) UserListIterator {
777 return original.NewUserListIterator(page)
778 }
779 func NewUserListPage(cur UserList, getNextPage func(context.Context, UserList) (UserList, error)) UserListPage {
780 return original.NewUserListPage(cur, getNextPage)
781 }
782 func NewUsersClient(subscriptionID string) UsersClient {
783 return original.NewUsersClient(subscriptionID)
784 }
785 func NewUsersClientWithBaseURI(baseURI string, subscriptionID string) UsersClient {
786 return original.NewUsersClientWithBaseURI(baseURI, subscriptionID)
787 }
788 func NewVirtualMachineSchedulesClient(subscriptionID string) VirtualMachineSchedulesClient {
789 return original.NewVirtualMachineSchedulesClient(subscriptionID)
790 }
791 func NewVirtualMachineSchedulesClientWithBaseURI(baseURI string, subscriptionID string) VirtualMachineSchedulesClient {
792 return original.NewVirtualMachineSchedulesClientWithBaseURI(baseURI, subscriptionID)
793 }
794 func NewVirtualMachinesClient(subscriptionID string) VirtualMachinesClient {
795 return original.NewVirtualMachinesClient(subscriptionID)
796 }
797 func NewVirtualMachinesClientWithBaseURI(baseURI string, subscriptionID string) VirtualMachinesClient {
798 return original.NewVirtualMachinesClientWithBaseURI(baseURI, subscriptionID)
799 }
800 func NewVirtualNetworkListIterator(page VirtualNetworkListPage) VirtualNetworkListIterator {
801 return original.NewVirtualNetworkListIterator(page)
802 }
803 func NewVirtualNetworkListPage(cur VirtualNetworkList, getNextPage func(context.Context, VirtualNetworkList) (VirtualNetworkList, error)) VirtualNetworkListPage {
804 return original.NewVirtualNetworkListPage(cur, getNextPage)
805 }
806 func NewVirtualNetworksClient(subscriptionID string) VirtualNetworksClient {
807 return original.NewVirtualNetworksClient(subscriptionID)
808 }
809 func NewVirtualNetworksClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworksClient {
810 return original.NewVirtualNetworksClientWithBaseURI(baseURI, subscriptionID)
811 }
812 func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
813 return original.NewWithBaseURI(baseURI, subscriptionID)
814 }
815 func PossibleCostThresholdStatusValues() []CostThresholdStatus {
816 return original.PossibleCostThresholdStatusValues()
817 }
818 func PossibleCostTypeValues() []CostType {
819 return original.PossibleCostTypeValues()
820 }
821 func PossibleCustomImageOsTypeValues() []CustomImageOsType {
822 return original.PossibleCustomImageOsTypeValues()
823 }
824 func PossibleEnableStatusValues() []EnableStatus {
825 return original.PossibleEnableStatusValues()
826 }
827 func PossibleEnvironmentPermissionValues() []EnvironmentPermission {
828 return original.PossibleEnvironmentPermissionValues()
829 }
830 func PossibleFileUploadOptionsValues() []FileUploadOptions {
831 return original.PossibleFileUploadOptionsValues()
832 }
833 func PossibleHTTPStatusCodeValues() []HTTPStatusCode {
834 return original.PossibleHTTPStatusCodeValues()
835 }
836 func PossibleHostCachingOptionsValues() []HostCachingOptions {
837 return original.PossibleHostCachingOptionsValues()
838 }
839 func PossibleLinuxOsStateValues() []LinuxOsState {
840 return original.PossibleLinuxOsStateValues()
841 }
842 func PossibleNotificationChannelEventTypeValues() []NotificationChannelEventType {
843 return original.PossibleNotificationChannelEventTypeValues()
844 }
845 func PossiblePolicyEvaluatorTypeValues() []PolicyEvaluatorType {
846 return original.PossiblePolicyEvaluatorTypeValues()
847 }
848 func PossiblePolicyFactNameValues() []PolicyFactName {
849 return original.PossiblePolicyFactNameValues()
850 }
851 func PossiblePolicyStatusValues() []PolicyStatus {
852 return original.PossiblePolicyStatusValues()
853 }
854 func PossiblePremiumDataDiskValues() []PremiumDataDisk {
855 return original.PossiblePremiumDataDiskValues()
856 }
857 func PossibleReportingCycleTypeValues() []ReportingCycleType {
858 return original.PossibleReportingCycleTypeValues()
859 }
860 func PossibleSourceControlTypeValues() []SourceControlType {
861 return original.PossibleSourceControlTypeValues()
862 }
863 func PossibleStorageTypeValues() []StorageType {
864 return original.PossibleStorageTypeValues()
865 }
866 func PossibleTargetCostStatusValues() []TargetCostStatus {
867 return original.PossibleTargetCostStatusValues()
868 }
869 func PossibleTransportProtocolValues() []TransportProtocol {
870 return original.PossibleTransportProtocolValues()
871 }
872 func PossibleUsagePermissionTypeValues() []UsagePermissionType {
873 return original.PossibleUsagePermissionTypeValues()
874 }
875 func PossibleVirtualMachineCreationSourceValues() []VirtualMachineCreationSource {
876 return original.PossibleVirtualMachineCreationSourceValues()
877 }
878 func PossibleWindowsOsStateValues() []WindowsOsState {
879 return original.PossibleWindowsOsStateValues()
880 }
881 func UserAgent() string {
882 return original.UserAgent() + " profiles/latest"
883 }
884 func Version() string {
885 return original.Version()
886 }
887
View as plain text