@azure/arm-hybridkubernetes 3.0.0-alpha.20250416.1 → 3.0.0-alpha.20250417.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,11 +63,11 @@ For browser environments, use the `InteractiveBrowserCredential` from the `@azur
|
|
|
63
63
|
import { InteractiveBrowserCredential } from "@azure/identity";
|
|
64
64
|
import { ConnectedKubernetesClient } from "@azure/arm-hybridkubernetes";
|
|
65
65
|
|
|
66
|
+
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
66
67
|
const credential = new InteractiveBrowserCredential({
|
|
67
68
|
tenantId: "<YOUR_TENANT_ID>",
|
|
68
|
-
clientId: "<YOUR_CLIENT_ID>"
|
|
69
|
-
|
|
70
|
-
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
69
|
+
clientId: "<YOUR_CLIENT_ID>",
|
|
70
|
+
});
|
|
71
71
|
const client = new ConnectedKubernetesClient(credential, subscriptionId);
|
|
72
72
|
```
|
|
73
73
|
|
package/package.json
CHANGED