Skip to content

Commit bb68841

Browse files
authored
Merge pull request #308 from SirSpidey/1719-update-wdc-links
Update links to developercloud
2 parents ab89a47 + dc59f93 commit bb68841

17 files changed

+22
-22
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ This library is licensed under Apache 2.0. Full license text is available in [LI
237237
## Contributing
238238
See [CONTRIBUTING.md](.github/CONTRIBUTING.md).
239239

240-
[wdc]: http://www.ibm.com/watson/developercloud/
240+
[wdc]: https://www.ibm.com/watson/developer/
241241
[wdc_unity_sdk]: https://github.com/watson-developer-cloud/unity-sdk
242242
[latest_release]: https://github.com/watson-developer-cloud/unity-sdk/releases/latest
243243
[bluemix_registration]: http://bluemix.net/registration
@@ -264,7 +264,7 @@ See [CONTRIBUTING.md](.github/CONTRIBUTING.md).
264264
[expressive_ssml]: https://console.bluemix.net/docs/services/text-to-speech/http.html#expressive
265265
[ssml]: https://console.bluemix.net/docs/services/text-to-speech/SSML.html
266266
[discovery-query]: https://console.bluemix.net/docs/services/discovery/using.html
267-
[natural_language_understanding]: https://www.ibm.com/watson/developercloud/natural-language-understanding.html
267+
[natural_language_understanding]: https://www.ibm.com/watson/services/natural-language-understanding/
268268
[nlu_models]: https://console.bluemix.net/docs/services/natural-language-understanding/customizing.html
269269
[nlu_entities]: https://console.bluemix.net/docs/services/natural-language-understanding/entity-types.html
270270
[nlu_relations]: https://console.bluemix.net/docs/services/natural-language-understanding/relations.html

Scripts/Services/Discovery/v1/Discovery.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace IBM.Watson.DeveloperCloud.Services.Discovery.v1
2929
{
3030
/// <summary>
3131
/// This class wraps the Discovery service
32-
/// <a href="http://www.ibm.com/watson/developercloud/discovery.html">Discovery Service</a>
32+
/// <a href="https://www.ibm.com/watson/services/discovery/">Discovery Service</a>
3333
/// </summary>
3434
public class Discovery : IWatsonService
3535
{
@@ -226,7 +226,7 @@ private void OnGetEnvironmentsResponse(RESTConnector.Request req, RESTConnector.
226226
/// <param name="failCallback">The fail callback.</param>
227227
/// <param name="name">The name of the environment to be created.</param>
228228
/// <param name="description">The description of the environment to be created.</param>
229-
/// <param name="size">The size of the environment to be created. See <a href="http://www.ibm.com/watson/developercloud/discovery.html#pricing-block">pricing.</a></param>
229+
/// <param name="size">The size of the environment to be created. See <a href="https://www.ibm.com/watson/services/discovery/#pricing-block">pricing.</a></param>
230230
/// <param name="customData">Optional custom data.</param>
231231
/// <returns>True if the call succeeds, false if the call is unsuccessful.</returns>
232232
public bool AddEnvironment(SuccessCallback<Environment> successCallback, FailCallback failCallback, string name = default(string), string description = default(string), int size = 0, Dictionary<string, object> customData = null)

Scripts/Services/RetrieveAndRank/v1/RetrieveAndRank.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace IBM.Watson.DeveloperCloud.Services.RetrieveAndRank.v1
2828
{
2929
/// <summary>
3030
/// This class wraps the Retrieve and Rank service.
31-
/// <a href="http://www.ibm.com/watson/developercloud/retrieve-rank.html">Retrieve and Rank Service</a>
31+
/// <a href="https://www.ibm.com/watson/services/retrieve-and-rank/">Retrieve and Rank Service</a>
3232
/// </summary>
3333
public class RetrieveAndRank : IWatsonService
3434
{
@@ -239,7 +239,7 @@ private void OnGetClustersResponse(RESTConnector.Request req, RESTConnector.Resp
239239

240240
#region CreateCluster
241241
/// <summary>
242-
/// Provisions a Solr cluster asynchronously. When the operation is successful, the status of the cluster is set to NOT_AVAILABLE. The status must be READY before you can use the cluster. For information about cluster sizing see http://www.ibm.com/watson/developercloud/doc/retrieve-rank/solr_ops.shtml#sizing.
242+
/// Provisions a Solr cluster asynchronously. When the operation is successful, the status of the cluster is set to NOT_AVAILABLE. The status must be READY before you can use the cluster. For information about cluster sizing see https://console.bluemix.net/docs/services/retrieve-and-rank/using-solr.html.
243243
/// </summary>
244244
/// <param name="successCallback">The success callback.</param>
245245
/// <param name="failCallback">The fail callback.</param>
@@ -1344,7 +1344,7 @@ private void OnGetRankersResponse(RESTConnector.Request req, RESTConnector.Respo
13441344
/// </summary>
13451345
/// <param name="successCallback">The success callback.</param>
13461346
/// <param name="failCallback">The fail callback.</param>
1347-
/// <param name="trainingDataPath">Training data in CSV format. The first header must be question_id and the last header must be the relevance label. The other headers are alphanumeric feature names. For details, see Using your own data (http://www.ibm.com/watson/developercloud/doc/retrieve-rank/data_format.shtml).</param>
1347+
/// <param name="trainingDataPath">Training data in CSV format. The first header must be question_id and the last header must be the relevance label. The other headers are alphanumeric feature names. For details, see Using your own data (https://console.bluemix.net/docs/services/retrieve-and-rank/overview.html).</param>
13481348
/// <param name="name">Metadata in JSON format. The metadata identifies an optional name to identify the ranker.</param>
13491349
/// <param name="customData"></param>
13501350
/// <returns></returns>
@@ -1456,7 +1456,7 @@ private void OnCreateRankerResponse(RESTConnector.Request req, RESTConnector.Res
14561456

14571457
#region Rank
14581458
/// <summary>
1459-
/// Returns the top answer and a list of ranked answers with their ranked scores and confidence values. Use the Get information about a ranker method to retrieve the status (http://www.ibm.com/watson/developercloud/retrieve-and-rank/api/v1/#get_status). Use this method to return answers when you train the ranker with custom features. However, in most cases, you can use the Search and rank method (http://www.ibm.com/watson/developercloud/retrieve-and-rank/api/v1/#query_ranker).
1459+
/// Returns the top answer and a list of ranked answers with their ranked scores and confidence values. Use the Get information about a ranker method to retrieve the status (https://www.ibm.com/watson/developercloud/retrieve-and-rank/api/v1/?curl#get_status). Use this method to return answers when you train the ranker with custom features. However, in most cases, you can use the Search and rank method (https://www.ibm.com/watson/developercloud/retrieve-and-rank/api/v1/?curl#query_ranker).
14601460
/// </summary>
14611461
/// <param name="successCallback">The success callback.</param>
14621462
/// <param name="failCallback">The fail callback.</param>

Scripts/UnitTests/TestAlchemyLanguage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public override IEnumerator RunTest()
117117
fsData data = null;
118118

119119
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
120-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
120+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
121121
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
122122

123123
var fileContent = File.ReadAllText(environmentalVariable);

Scripts/UnitTests/TestConversation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public override IEnumerator RunTest()
5353
fsData data = null;
5454

5555
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
56-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
56+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
5757
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
5858
var fileContent = File.ReadAllText(environmentalVariable);
5959

Scripts/UnitTests/TestDiscovery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public override IEnumerator RunTest()
8282
fsData data = null;
8383

8484
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
85-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
85+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
8686
var environmentalVariable = System.Environment.GetEnvironmentVariable("VCAP_SERVICES");
8787
var fileContent = File.ReadAllText(environmentalVariable);
8888

Scripts/UnitTests/TestDocumentConversion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public override IEnumerator RunTest()
5050
fsData data = null;
5151

5252
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
53-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
53+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
5454
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
5555
var fileContent = File.ReadAllText(environmentalVariable);
5656

Scripts/UnitTests/TestLanguageTranslator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public override IEnumerator RunTest()
6060
fsData data = null;
6161

6262
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
63-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
63+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
6464
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
6565
var fileContent = File.ReadAllText(environmentalVariable);
6666

Scripts/UnitTests/TestNaturalLanguageClassifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public override IEnumerator RunTest()
6868
fsData data = null;
6969

7070
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
71-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
71+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
7272
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
7373
var fileContent = File.ReadAllText(environmentalVariable);
7474

Scripts/UnitTests/TestNaturalLanguageUnderstanding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public override IEnumerator RunTest()
4949
fsData data = null;
5050

5151
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
52-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
52+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
5353
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
5454
var fileContent = File.ReadAllText(environmentalVariable);
5555

Scripts/UnitTests/TestPersonalityInsights.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public override IEnumerator RunTest()
5656
fsData data = null;
5757

5858
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
59-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
59+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
6060
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
6161
var fileContent = File.ReadAllText(environmentalVariable);
6262

Scripts/UnitTests/TestRetrieveAndRank.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public override IEnumerator RunTest()
9595
fsData data = null;
9696

9797
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
98-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
98+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
9999
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
100100
var fileContent = File.ReadAllText(environmentalVariable);
101101

Scripts/UnitTests/TestSpeechToText.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public override IEnumerator RunTest()
9696
fsData data = null;
9797

9898
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
99-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
99+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
100100
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
101101
var fileContent = File.ReadAllText(environmentalVariable);
102102

Scripts/UnitTests/TestTextToSpeech.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public override IEnumerator RunTest()
7171
fsData data = null;
7272

7373
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
74-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
74+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
7575
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
7676
var fileContent = File.ReadAllText(environmentalVariable);
7777

Scripts/UnitTests/TestToneAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public override IEnumerator RunTest()
5050
fsData data = null;
5151

5252
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
53-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
53+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
5454
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
5555
var fileContent = File.ReadAllText(environmentalVariable);
5656

Scripts/UnitTests/TestTradeoffAnalytics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public override IEnumerator RunTest()
4949
fsData data = null;
5050

5151
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
52-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
52+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
5353
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
5454
var fileContent = File.ReadAllText(environmentalVariable);
5555

Scripts/UnitTests/TestVisualRecognition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public override IEnumerator RunTest()
7272
fsData data = null;
7373

7474
// Get credentials from a credential file defined in environmental variables in the VCAP_SERVICES format.
75-
// See https://www.ibm.com/watson/developercloud/doc/common/getting-started-variables.html.
75+
// See https://console.bluemix.net/docs/services/watson/getting-started-variables.html.
7676
var environmentalVariable = Environment.GetEnvironmentVariable("VCAP_SERVICES");
7777
var fileContent = File.ReadAllText(environmentalVariable);
7878

0 commit comments

Comments
 (0)