Skip to content

Commit d8ee9a6

Browse files
committed
update links in interface
1 parent fd9f07e commit d8ee9a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/IBM.WatsonDeveloperCloud.Discovery.v1/IDiscoveryService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public interface IDiscoveryService
206206
/// <returns><see cref="DocumentAccepted" />DocumentAccepted</returns>
207207
DocumentAccepted UpdateDocument(string environmentId, string collectionId, string documentId, System.IO.Stream file = null, string metadata = null, string fileContentType = null);
208208
/// <summary>
209-
/// Query documents in multiple collections. See the [Discovery service documentation](https://console.bluemix.net/docs/services/discovery/using.html) for more details.
209+
/// Query documents in multiple collections. See the [Discovery service documentation](https://www.ibm.com/watson/developercloud/doc/discovery/using.html) for more details.
210210
/// </summary>
211211
/// <param name="environmentId">The ID of the environment.</param>
212212
/// <param name="collectionIds">A comma-separated list of collection IDs to be queried against.</param>
@@ -225,7 +225,7 @@ public interface IDiscoveryService
225225
QueryResponse FederatedQuery(string environmentId, List<string> collectionIds, string filter = null, string query = null, string naturalLanguageQuery = null, string aggregation = null, long? count = null, List<string> returnFields = null, long? offset = null, List<string> sort = null, bool? highlight = null, bool? deduplicate = null, string deduplicateField = null);
226226

227227
/// <summary>
228-
/// Query multiple collection system notices. Queries for notices (errors or warnings) that might have been generated by the system. Notices are generated when ingesting documents and performing relevance training. See the [Discovery service documentation](https://console.bluemix.net/docs/services/discovery/using.html) for more details on the query language.
228+
/// Query multiple collection system notices. Queries for notices (errors or warnings) that might have been generated by the system. Notices are generated when ingesting documents and performing relevance training. See the [Discovery service documentation](https://www.ibm.com/watson/developercloud/doc/discovery/using.html) for more details on the query language.
229229
/// </summary>
230230
/// <param name="environmentId">The ID of the environment.</param>
231231
/// <param name="collectionIds">A comma-separated list of collection IDs to be queried against.</param>
@@ -243,7 +243,7 @@ public interface IDiscoveryService
243243
QueryNoticesResponse FederatedQueryNotices(string environmentId, List<string> collectionIds, string filter = null, string query = null, string naturalLanguageQuery = null, string aggregation = null, long? count = null, List<string> returnFields = null, long? offset = null, List<string> sort = null, bool? highlight = null, string deduplicateField = null);
244244

245245
/// <summary>
246-
/// Query documents. See the [Discovery service documentation](https://console.bluemix.net/docs/services/discovery/using.html) for more details.
246+
/// Query documents. See the [Discovery service documentation](https://www.ibm.com/watson/developercloud/doc/discovery/using.html) for more details.
247247
/// </summary>
248248
/// <param name="environmentId">The ID of the environment.</param>
249249
/// <param name="collectionId">The ID of the collection.</param>

src/IBM.WatsonDeveloperCloud.PersonalityInsights.v3/IPersonalityInsightsService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ namespace IBM.WatsonDeveloperCloud.PersonalityInsights.v3
2222
public interface IPersonalityInsightsService
2323
{
2424
/// <summary>
25-
/// Generates a personality profile based on input text. Derives personality insights for up to 20 MB of input content written by an author, though the service requires much less text to produce an accurate profile; for more information, see [Providing sufficient input](https://console.bluemix.net/docs/services/personality-insights/input.html#sufficient). Accepts input in Arabic, English, Japanese, Korean, or Spanish and produces output in one of eleven languages. Provide plain text, HTML, or JSON content, and receive results in JSON or CSV format.
25+
/// Generates a personality profile based on input text. Derives personality insights for up to 20 MB of input content written by an author, though the service requires much less text to produce an accurate profile; for more information, see [Providing sufficient input](http://www.ibm.com/watson/developercloud/doc/personality-insights/basics.html#overviewGuidelines). Accepts input in Arabic, English, Japanese, Korean, or Spanish and produces output in one of eleven languages. Provide plain text, HTML, or JSON content, and receive results in JSON or CSV format.
2626
/// </summary>
27-
/// <param name="content">A maximum of 20 MB of content to analyze, though the service requires much less text; for more information, see [Providing sufficient input](https://console.bluemix.net/docs/services/personality-insights/input.html#sufficient). A JSON request must conform to the `Content` model.</param>
27+
/// <param name="content">A maximum of 20 MB of content to analyze, though the service requires much less text; for more information, see [Providing sufficient input](http://www.ibm.com/watson/developercloud/doc/personality-insights/basics.html#overviewGuidelines). A JSON request must conform to the `Content` model.</param>
2828
/// <param name="contentType">The type of the input: application/json, text/html, or text/plain. A character encoding can be specified by including a `charset` parameter. For example, 'text/html;charset=utf-8'.</param>
2929
/// <param name="contentLanguage">The language of the input text for the request: Arabic, English, Japanese, Korean, or Spanish. Regional variants are treated as their parent language; for example, `en-US` is interpreted as `en`. The effect of the `contentLanguage` header depends on the `Content-Type` header. When `Content-Type` is `text/plain` or `text/html`, `contentLanguage` is the only way to specify the language. When `Content-Type` is `application/json`, `contentLanguage` overrides a language specified with the `language` parameter of a `ContentItem` object, and content items that specify a different language are ignored; omit this header to base the language on the specification of the content items. You can specify any combination of languages for `contentLanguage` and `Accept-Language`. (optional, default to en)</param>
3030
/// <param name="acceptLanguage">The desired language of the response. For two-character arguments, regional variants are treated as their parent language; for example, `en-US` is interpreted as `en`. You can specify any combination of languages for the input and response content. (optional, default to en)</param>

0 commit comments

Comments
 (0)