You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package of @azure/arm-scvmm is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart).
5
+
The package of @azure/arm-scvmm is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart).
@@ -24,16 +24,16 @@ See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUP
24
24
25
25
### Install the `@azure/arm-scvmm` package
26
26
27
-
Install the Azure Scvmm client library for JavaScript with `npm`:
27
+
Install the Azure ScVmm client library for JavaScript with `npm`:
28
28
29
29
```bash
30
30
npm install @azure/arm-scvmm
31
31
```
32
32
33
-
### Create and authenticate a `Scvmm`
33
+
### Create and authenticate a `ScVmm`
34
34
35
-
To create a client object to access the Azure Scvmm API, you will need the `endpoint` of your Azure Scvmm resource and a `credential`. The Azure Scvmm client can use Azure Active Directory credentials to authenticate.
36
-
You can find the endpoint for your Azure Scvmm resource in the [Azure Portal][azure_portal].
35
+
To create a client object to access the Azure ScVmm API, you will need the `endpoint` of your Azure ScVmm resource and a `credential`. The Azure ScVmm client can use Azure Active Directory credentials to authenticate.
36
+
You can find the endpoint for your Azure ScVmm resource in the [Azure Portal][azure_portal].
37
37
38
38
You can authenticate with Azure Active Directory using a credential from the [@azure/identity][azure_identity] library or [an existing AAD Token](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token).
39
39
@@ -43,25 +43,25 @@ To use the [DefaultAzureCredential][defaultazurecredential] provider shown below
43
43
npm install @azure/identity
44
44
```
45
45
46
-
You will also need to **register a new AAD application and grant access to Azure Scvmm** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
46
+
You will also need to **register a new AAD application and grant access to Azure ScVmm** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
47
47
Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`.
48
48
49
49
For more information about how to create an Azure AD Application check out [this guide](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).
// For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details.
// For client-side applications running in the browser, use this code instead:
60
60
// const credential = new InteractiveBrowserCredential({
61
61
// tenantId: "<YOUR_TENANT_ID>",
62
62
// clientId: "<YOUR_CLIENT_ID>"
63
63
// });
64
-
// const client = new Scvmm(credential, subscriptionId);
64
+
// const client = new ScVmm(credential, subscriptionId);
65
65
```
66
66
67
67
@@ -70,9 +70,9 @@ To use this client library in the browser, first you need to use a bundler. For
70
70
71
71
## Key concepts
72
72
73
-
### Scvmm
73
+
### ScVmm
74
74
75
-
`Scvmm` is the primary interface for developers using the Azure Scvmm client library. Explore the methods on this client object to understand the different features of the Azure Scvmm service that you can access.
75
+
`ScVmm` is the primary interface for developers using the Azure ScVmm client library. Explore the methods on this client object to understand the different features of the Azure ScVmm service that you can access.
0 commit comments