@@ -39,7 +39,7 @@ public OSProfile()
39
39
/// (Linux):** 64 characters. <br><br> For naming
40
40
/// conventions and restrictions see [Azure infrastructure services
41
41
/// implementation
42
- /// guidelines](https://learn .microsoft.com/azure/azure-resource-manager/management/resource-name-rules).</param>
42
+ /// guidelines](https://docs .microsoft.com/azure/azure-resource-manager/management/resource-name-rules).</param>
43
43
/// <param name="adminUsername">Specifies the name of the administrator
44
44
/// account. <br><br> This property cannot be updated after
45
45
/// the VM is created. <br><br> **Windows-only
@@ -67,11 +67,11 @@ public OSProfile()
67
67
/// "Password!", "Password1", "Password22", "iloveyou!"
68
68
/// <br><br> For resetting the password, see [How to reset
69
69
/// the Remote Desktop service or its login password in a Windows
70
- /// VM](https://learn .microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)
70
+ /// VM](https://docs .microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)
71
71
/// <br><br> For resetting root password, see [Manage
72
72
/// users, SSH, and check or repair disks on Azure Linux VMs using the
73
73
/// VMAccess
74
- /// Extension](https://learn .microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)</param>
74
+ /// Extension](https://docs .microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)</param>
75
75
/// <param name="customData">Specifies a base-64 encoded string of
76
76
/// custom data. The base-64 encoded string is decoded to a binary
77
77
/// array that is saved as a file on the Virtual Machine. The maximum
@@ -84,20 +84,20 @@ public OSProfile()
84
84
/// VMs](https://azure.microsoft.com/blog/custom-data-and-cloud-init-on-windows-azure/)
85
85
/// <br><br> For using cloud-init for your Linux VM, see
86
86
/// [Using cloud-init to customize a Linux VM during
87
- /// creation](https://learn .microsoft.com/azure/virtual-machines/linux/using-cloud-init)</param>
87
+ /// creation](https://docs .microsoft.com/azure/virtual-machines/linux/using-cloud-init)</param>
88
88
/// <param name="windowsConfiguration">Specifies Windows operating
89
89
/// system settings on the virtual machine.</param>
90
90
/// <param name="linuxConfiguration">Specifies the Linux operating
91
91
/// system settings on the virtual machine. <br><br>For a
92
92
/// list of supported Linux distributions, see [Linux on Azure-Endorsed
93
- /// Distributions](https://learn .microsoft.com/azure/virtual-machines/linux/endorsed-distros).</param>
93
+ /// Distributions](https://docs .microsoft.com/azure/virtual-machines/linux/endorsed-distros).</param>
94
94
/// <param name="secrets">Specifies set of certificates that should be
95
95
/// installed onto the virtual machine. To install certificates on a
96
96
/// virtual machine it is recommended to use the [Azure Key Vault
97
97
/// virtual machine extension for
98
- /// Linux](https://learn .microsoft.com/azure/virtual-machines/extensions/key-vault-linux)
98
+ /// Linux](https://docs .microsoft.com/azure/virtual-machines/extensions/key-vault-linux)
99
99
/// or the [Azure Key Vault virtual machine extension for
100
- /// Windows](https://learn .microsoft.com/azure/virtual-machines/extensions/key-vault-windows).</param>
100
+ /// Windows](https://docs .microsoft.com/azure/virtual-machines/extensions/key-vault-windows).</param>
101
101
/// <param name="allowExtensionOperations">Specifies whether extension
102
102
/// operations should be allowed on the virtual machine.
103
103
/// <br><br>This may only be set to False when no
@@ -132,7 +132,7 @@ public OSProfile()
132
132
/// characters. &lt;br&gt;&lt;br&gt; For naming
133
133
/// conventions and restrictions see [Azure infrastructure services
134
134
/// implementation
135
- /// guidelines](https://learn .microsoft.com/azure/azure-resource-manager/management/resource-name-rules).
135
+ /// guidelines](https://docs .microsoft.com/azure/azure-resource-manager/management/resource-name-rules).
136
136
/// </summary>
137
137
[ JsonProperty ( PropertyName = "computerName" ) ]
138
138
public string ComputerName { get ; set ; }
@@ -174,11 +174,11 @@ public OSProfile()
174
174
/// &lt;br&gt;&lt;br&gt; For resetting the password,
175
175
/// see [How to reset the Remote Desktop service or its login password
176
176
/// in a Windows
177
- /// VM](https://learn .microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)
177
+ /// VM](https://docs .microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)
178
178
/// &lt;br&gt;&lt;br&gt; For resetting root password,
179
179
/// see [Manage users, SSH, and check or repair disks on Azure Linux
180
180
/// VMs using the VMAccess
181
- /// Extension](https://learn .microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)
181
+ /// Extension](https://docs .microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)
182
182
/// </summary>
183
183
[ JsonProperty ( PropertyName = "adminPassword" ) ]
184
184
public string AdminPassword { get ; set ; }
@@ -197,7 +197,7 @@ public OSProfile()
197
197
/// VMs](https://azure.microsoft.com/blog/custom-data-and-cloud-init-on-windows-azure/)
198
198
/// &lt;br&gt;&lt;br&gt; For using cloud-init for your
199
199
/// Linux VM, see [Using cloud-init to customize a Linux VM during
200
- /// creation](https://learn .microsoft.com/azure/virtual-machines/linux/using-cloud-init)
200
+ /// creation](https://docs .microsoft.com/azure/virtual-machines/linux/using-cloud-init)
201
201
/// </summary>
202
202
[ JsonProperty ( PropertyName = "customData" ) ]
203
203
public string CustomData { get ; set ; }
@@ -213,7 +213,7 @@ public OSProfile()
213
213
/// Gets or sets specifies the Linux operating system settings on the
214
214
/// virtual machine. &lt;br&gt;&lt;br&gt;For a list of
215
215
/// supported Linux distributions, see [Linux on Azure-Endorsed
216
- /// Distributions](https://learn .microsoft.com/azure/virtual-machines/linux/endorsed-distros).
216
+ /// Distributions](https://docs .microsoft.com/azure/virtual-machines/linux/endorsed-distros).
217
217
/// </summary>
218
218
[ JsonProperty ( PropertyName = "linuxConfiguration" ) ]
219
219
public LinuxConfiguration LinuxConfiguration { get ; set ; }
@@ -223,9 +223,9 @@ public OSProfile()
223
223
/// onto the virtual machine. To install certificates on a virtual
224
224
/// machine it is recommended to use the [Azure Key Vault virtual
225
225
/// machine extension for
226
- /// Linux](https://learn .microsoft.com/azure/virtual-machines/extensions/key-vault-linux)
226
+ /// Linux](https://docs .microsoft.com/azure/virtual-machines/extensions/key-vault-linux)
227
227
/// or the [Azure Key Vault virtual machine extension for
228
- /// Windows](https://learn .microsoft.com/azure/virtual-machines/extensions/key-vault-windows).
228
+ /// Windows](https://docs .microsoft.com/azure/virtual-machines/extensions/key-vault-windows).
229
229
/// </summary>
230
230
[ JsonProperty ( PropertyName = "secrets" ) ]
231
231
public IList < VaultSecretGroup > Secrets { get ; set ; }
0 commit comments