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

Commit

Permalink
Generated from 95144350accb257e537fb7af4cf472c7253670f0 (#4336)
Browse files Browse the repository at this point in the history
typo: search/resource-manager/Microsoft.Search

- programatically -> programmatically
- Trim trailing space
  • Loading branch information
AutorestCI authored Dec 4, 2018
1 parent 58fdcc0 commit 4627e33
Show file tree
Hide file tree
Showing 17 changed files with 224 additions and 261 deletions.
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

0 comments on commit 4627e33

Please sign in to comment.