Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/services/signalrManagement/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
29 changes: 16 additions & 13 deletions lib/services/signalrManagement/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,41 @@ uid: azure-arm-signalr
summary: *content

---
# Microsoft Azure SDK for Node.js - SignalRManagementClient
**This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://github.com/Azure/azure-sdk-for-js) which works on Node.js and browsers.**
## Microsoft Azure SDK for Node.js - SignalRManagementClient

This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features
### Features


## How to Install
### How to Install

```bash
npm install azure-arm-signalr
```

## How to use
### How to use

### Authentication, client creation and list operations as an example.
#### Authentication, client creation, and list operations as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const SignalRManagementClient = require("azure-arm-signalr");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new SignalRManagementClient(creds, subscriptionId);
return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
const subscriptionId = "<Subscription_Id>";
const client = new SignalRManagementClient(creds, subscriptionId);

return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error occurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects
```
### Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
8 changes: 4 additions & 4 deletions lib/services/signalrManagement/lib/models/dimension.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class Dimension {
/**
* Create a Dimension.
* @member {string} [name] The public facing name of the dimension.
* @member {string} [displayName] Localized friendly display name of the
* @property {string} [name] The public facing name of the dimension.
* @property {string} [displayName] Localized friendly display name of the
* dimension.
* @member {string} [internalName] Name of the dimension as it appears in
* @property {string} [internalName] Name of the dimension as it appears in
* MDM.
* @member {boolean} [toBeExportedForShoebox] A Boolean flag indicating
* @property {boolean} [toBeExportedForShoebox] A Boolean flag indicating
* whether this dimension should be included for the shoebox export scenario.
*/
constructor() {
Expand Down
Loading