Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

Copy link
Preview

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The file starts with a BOM character, which may lead to encoding issues in some build environments. Consider removing the BOM for consistent parsing across tools.

Suggested change
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

Copilot uses AI. Check for mistakes.

<PropertyGroup>
<PsModuleName>Compute</PsModuleName>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Properties of disk restore point
/// </summary>
public partial class DiskRestorePoint : ProxyOnlyResource
public partial class DiskRestorePoint : ProxyResource
{
/// <summary>
/// Initializes a new instance of the DiskRestorePoint class.
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ namespace Microsoft.Azure.Management.Compute.Models
{
public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly
{
public VirtualMachineScaleSetVMExtension(string name, string type, string forceUpdateTag, string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
public VirtualMachineScaleSetVMExtension(string name, string type, string forceUpdateTag, string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
{
Name = name;
Type = type;
ForceUpdateTag = forceUpdateTag;
Publisher = publisher;
Type1 = type1;
VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType;
TypeHandlerVersion = typeHandlerVersion;
AutoUpgradeMinorVersion = autoUpgradeMinorVersion;
EnableAutomaticUpgrade = enableAutomaticUpgrade;
Expand All @@ -27,15 +27,15 @@ public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly
CustomInit();
}

public VirtualMachineScaleSetVMExtension(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
public VirtualMachineScaleSetVMExtension(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
: base(id)
{
Name = name;
Type = type;
Location = Location;
Location = location;
ForceUpdateTag = forceUpdateTag;
Publisher = publisher;
Type1 = type1;
VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType;
TypeHandlerVersion = typeHandlerVersion;
AutoUpgradeMinorVersion = autoUpgradeMinorVersion;
EnableAutomaticUpgrade = enableAutomaticUpgrade;
Expand All @@ -48,14 +48,14 @@ public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly
CustomInit();
}

public VirtualMachineScaleSetVMExtension(string id, string name, string type, string forceUpdateTag, string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
public VirtualMachineScaleSetVMExtension(string id, string name, string type, string forceUpdateTag, string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference))
: base(id)
{
Name = name;
Type = type;
ForceUpdateTag = forceUpdateTag;
Publisher = publisher;
Type1 = type1;
VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType;
TypeHandlerVersion = typeHandlerVersion;
AutoUpgradeMinorVersion = autoUpgradeMinorVersion;
EnableAutomaticUpgrade = enableAutomaticUpgrade;
Expand Down

This file was deleted.

Loading
Loading