Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR search/resource-manager] typo: search/resource-manager/Microsoft.Search #4336

Merged
merged 1 commit into from
Dec 4, 2018
Merged
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
13 changes: 7 additions & 6 deletions lib/services/searchManagement/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@ uid: azure-arm-search
summary: *content

---
# Microsoft Azure SDK for Node.js - SearchManagementClient
**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 - SearchManagementClient
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-search
```

## 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");
Expand All @@ -35,6 +36,6 @@ msRestAzure.interactiveLogin().then((creds) => {
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)
6 changes: 3 additions & 3 deletions lib/services/searchManagement/lib/models/adminKeyResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
class AdminKeyResult {
/**
* Create a AdminKeyResult.
* @member {string} [primaryKey] The primary admin API key of the Search
* service.
* @member {string} [secondaryKey] The secondary admin API key of the Search
* @property {string} [primaryKey] The primary admin API key of the Search
* service.
* @property {string} [secondaryKey] The secondary admin API key of the
* Search service.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
class CheckNameAvailabilityInput {
/**
* Create a CheckNameAvailabilityInput.
* @member {string} name The Search service name to validate. Search service
* names must only contain lowercase letters, digits or dashes, cannot use
* dash as the first two or last one characters, cannot contain consecutive
* dashes, and must be between 2 and 60 characters in length.
* @property {string} name The Search service name to validate. Search
* service names must only contain lowercase letters, digits or dashes,
* cannot use dash as the first two or last one characters, cannot contain
* consecutive dashes, and must be between 2 and 60 characters in length.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
class CheckNameAvailabilityOutput {
/**
* Create a CheckNameAvailabilityOutput.
* @member {boolean} [isNameAvailable] A value indicating whether the name is
* available.
* @member {string} [reason] The reason why the name is not available.
* @property {boolean} [isNameAvailable] A value indicating whether the name
* is available.
* @property {string} [reason] The reason why the name is not available.
* 'Invalid' indicates the name provided does not match the naming
* requirements (incorrect length, unsupported characters, etc.).
* 'AlreadyExists' indicates that the name is already in use and is therefore
* unavailable. Possible values include: 'Invalid', 'AlreadyExists'
* @member {string} [message] A message that explains why the name is invalid
* and provides resource naming requirements. Available only if 'Invalid' is
* returned in the 'reason' property.
* @property {string} [message] A message that explains why the name is
* invalid and provides resource naming requirements. Available only if
* 'Invalid' is returned in the 'reason' property.
*/
constructor() {
}
Expand Down
4 changes: 2 additions & 2 deletions lib/services/searchManagement/lib/models/identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
class Identity {
/**
* Create a Identity.
* @member {string} [principalId] The principal ID of resource identity.
* @member {string} [tenantId] The tenant ID of resource.
* @property {string} [principalId] The principal ID of resource identity.
* @property {string} [tenantId] The tenant ID of resource.
*/
constructor() {
}
Expand Down
Loading