Skip to content

Commit 4d37163

Browse files
committed
Fix heading convention issue
1 parent a404e63 commit 4d37163

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

articles/automanage/quick-go-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Azure Automanage allows users to seamlessly apply Azure best practices to their
2424
> [!IMPORTANT]
2525
> You need to have the **Contributor** role on the resource group containing your VMs to enable Automanage. If you are enabling Automanage for the first time on a subscription, you need the following permissions: **Owner** role or **Contributor** along with **User Access Administrator** roles on your subscription.
2626
27-
## Install Required Packages
27+
## Install required packages
2828

2929
For this demo, both the **Azure Identity** and **Azure Automanage** packages are required.
3030

@@ -33,7 +33,7 @@ go get "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/automanage/armauto
3333
go get "github.com/Azure/azure-sdk-for-go/sdk/azidentity"
3434
```
3535

36-
## Import Packages
36+
## Import packages
3737

3838
Import the **Azure Identity** and **Azure Automanage** packages into the script:
3939

@@ -44,7 +44,7 @@ import (
4444
)
4545
```
4646

47-
## Authenticate to Azure & Create an Automanage Client
47+
## Authenticate to Azure and create an Automanage client
4848

4949
Use the **Azure Identity** package to authenticate to Azure and then create an Automanage Client:
5050

@@ -53,7 +53,7 @@ credential, err := azidentity.NewDefaultAzureCredential(nil)
5353
configProfilesClient, err := armautomanage.NewConfigurationProfilesClient("<subscription ID>", credential, nil)
5454
```
5555

56-
## Enable Best Practices Configuration Profile to an Existing Virtual Machine
56+
## Enable best practices configuration profile to an existing virtual machine
5757

5858
```go
5959
configProfileId := "/providers/Microsoft.Automanage/bestPractices/AzureBestPracticesProduction"
@@ -70,7 +70,7 @@ assignment := armautomanage.ConfigurationProfileAssignment{
7070
newAssignment, err = assignmentClient.CreateOrUpdate(context.Background(), "default", "resourceGroupName", "vmName", assignment, nil)
7171
```
7272

73-
## Next Steps
73+
## Next steps
7474

7575
Learn how to conduct more operations with the GO Automanage Client by visiting the [azure-sdk-for-go repo](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/automanage/armautomanage/).
7676

articles/automanage/quick-java-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Azure Automanage allows users to seamlessly apply Azure best practices to their
2525
> [!IMPORTANT]
2626
> You need to have the **Contributor** role on the resource group containing your VMs to enable Automanage. If you are enabling Automanage for the first time on a subscription, you need the following permissions: **Owner** role or **Contributor** along with **User Access Administrator** roles on your subscription.
2727
28-
## Add Required Dependencies
28+
## Add required dependencies
2929

3030
Add the **Azure Identity** and **Azure Automanage** dependencies to the `pom.xml`.
3131

@@ -46,7 +46,7 @@ Add the **Azure Identity** and **Azure Automanage** dependencies to the `pom.xml
4646
</dependency>
4747
```
4848

49-
## Authenticate to Azure & Create an Automanage Client
49+
## Authenticate to Azure and create an Automanage client
5050

5151
Use the **Azure Identity** package to authenticate to Azure and then create an Automanage Client:
5252

@@ -60,7 +60,7 @@ AutomanageManager client = AutomanageManager
6060
.authenticate(credential, profile);
6161
```
6262

63-
## Enable Best Practices Configuration Profile to an Existing Virtual Machine
63+
## Enable best practices configuration profile to an existing virtual machine
6464

6565
```java
6666
String configProfile = "/providers/Microsoft.Automanage/bestPractices/AzureBestPracticesProduction";
@@ -75,7 +75,7 @@ client
7575
.create();
7676
```
7777

78-
## Next Steps
78+
## Next steps
7979

8080
Learn how to conduct more operations with the Java Automanage Client by visiting the [azure-sdk-for-java repo](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/automanage/azure-resourcemanager-automanage).
8181

articles/automanage/quick-javascript-sdk.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Azure Automanage allows users to seamlessly apply Azure best practices to their
2424
> [!IMPORTANT]
2525
> You need to have the **Contributor** role on the resource group containing your VMs to enable Automanage. If you are enabling Automanage for the first time on a subscription, you need the following permissions: **Owner** role or **Contributor** along with **User Access Administrator** roles on your subscription.
2626
27-
## Install Required Packages
27+
## Install required packages
2828

2929
For this demo, both the **Azure Identity** and **Azure Automanage** packages are required.
3030

@@ -33,7 +33,7 @@ npm install @azure/arm-automanage
3333
npm install @azure/identity
3434
```
3535

36-
## Import Packages
36+
## Import packages
3737

3838
Import the **Azure Identity** and **Azure Automanage** packages into the script:
3939

@@ -42,7 +42,7 @@ const { AutomanageClient } = require("@azure/arm-automanage");
4242
const { DefaultAzureCredential } = require("@azure/identity");
4343
```
4444

45-
## Authenticate to Azure & Create an Automanage Client
45+
## Authenticate to Azure and create an Automanage client
4646

4747
Use the **Azure Identity** package to authenticate to Azure and then create an Automanage Client:
4848

@@ -51,7 +51,7 @@ const credential = new DefaultAzureCredential();
5151
const client = new AutomanageClient(credential, "<subscription ID>");
5252
```
5353

54-
## Enable Best Practices Configuration Profile to an Existing Virtual Machine
54+
## Enable best practices configuration profile to an existing virtual machine
5555

5656
```javascript
5757
let assignment = {
@@ -64,7 +64,7 @@ let assignment = {
6464
await client.configurationProfileAssignments.createOrUpdate("default", "resourceGroupName", "vmName", assignment);
6565
```
6666

67-
## Next Steps
67+
## Next steps
6868

69-
<!-- Learn how to conduct more operations with the JavaScript Automanage Client by visiting the [azure-sdk-for-js repo](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/automanage/arm-automanage). -->
69+
Learn how to conduct more operations with the JavaScript Automanage Client by visiting the [azure-sdk-for-js repo](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/automanage/arm-automanage).
7070

articles/automanage/quick-python-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Azure Automanage allows users to seamlessly apply Azure best practices to their
2424
> [!IMPORTANT]
2525
> You need to have the **Contributor** role on the resource group containing your VMs to enable Automanage. If you are enabling Automanage for the first time on a subscription, you need the following permissions: **Owner** role or **Contributor** along with **User Access Administrator** roles on your subscription.
2626
27-
## Install Required Packages
27+
## Install required packages
2828

2929
For this demo, both the **Azure Identity** and **Azure Automanage** packages are required.
3030

@@ -35,7 +35,7 @@ pip install azure-identity
3535
pip install azure-mgmt-automanage
3636
```
3737

38-
## Import Packages
38+
## Import packages
3939

4040
Import the **Azure Identity** and **Azure Automanage** packages into the script:
4141

@@ -44,7 +44,7 @@ from azure.identity import DefaultAzureCredential
4444
from azure.mgmt.automanage import AutomanageClient
4545
```
4646

47-
## Authenticate to Azure & Create an Automanage Client
47+
## Authenticate to Azure and create an Automanage client
4848

4949
Use the **Azure Identity** package to authenticate to Azure and then create an Automanage Client:
5050

@@ -53,7 +53,7 @@ credential = DefaultAzureCredential()
5353
client = AutomanageClient(credential, "<subscription ID>")
5454
```
5555

56-
## Enable Best Practices Configuration Profile to an Existing Virtual Machine
56+
## Enable best practices configuration profile to an existing virtual machine
5757

5858
```python
5959
assignment = {
@@ -65,7 +65,7 @@ assignment = {
6565
client.configuration_profile_assignments.create_or_update("default", "resourceGroupName", "vmName", assignment)
6666
```
6767

68-
## Next Steps
68+
## Next steps
6969

7070
Learn how to conduct more operations with the Automanage Client by visiting the [azure-samples-python-management repo](https://github.com/Azure-Samples/azure-samples-python-management/tree/main/samples/automanage).
7171

articles/automanage/reference-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ ms.date: 08/25/2022
99
ms.author: andrsmith
1010
---
1111

12-
# Automanage SDK Overview
12+
# Automanage SDK overview
1313

1414
Azure Automanage currently supports the following SDKs:
1515

16-
- Python
17-
- Go
18-
- Java
19-
- JavaScript
16+
- [Python](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/automanage/azure-mgmt-automanage)
17+
- [Go](https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/resourcemanager/automanage/armautomanage)
18+
- [Java](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/automanage/azure-resourcemanager-automanage)
19+
- [JavaScript](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/automanage/arm-automanage)
2020
- CSharp (pending)
2121
- PowerShell (pending)
2222
- Azure CLI (pending)

0 commit comments

Comments
 (0)