> + }
> +
> + public static Properties defaultProperties() {
> + final Properties properties = BaseHttpApiMetadata.defaultProperties();
> + return properties;
> + }
> +
> + public static class Builder extends
> BaseHttpApiMetadata.Builder<AzureComputeApi, Builder> {
> +
> + protected Builder() {
> + super();
> +
> + id("azurecompute-arm")
> + .name("Microsoft Azure Resource Manager REST API")
> + .identityName("Azure Service Principal credential name")
> + .credentialName("Azure Service Principal credential
> password")
>From official docs, they are used interchangeably. Sometimes they are called
>`application id` and `application password`. Other times they are called
>`client id` and `client secret`. Here is an example:
```
var credential = new ClientCredential(clientId: "{application id}",
clientSecret: "{application password}");
```
I can update these to make sure these are consistently named as `applicationId`
and `applicationPassword`. WDYT? @nacx
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/250/files/8d7d68bf33361d7f5df68c7e7232b03116ed6977#r58624876