Skip to content

Commit 00bca43

Browse files
authored
Merge pull request #1062 from watson-developer-cloud/6599-refactor-bluemix
Refactor bluemix to cloud.ibm
2 parents c926117 + 66482ca commit 00bca43

File tree

22 files changed

+28
-28
lines changed

22 files changed

+28
-28
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Before you open an issue, please check if a similar issue already exists or has
1313

1414
**Check service status**
1515

16-
1. For service issues or 5xx errors, first, go to https://console.bluemix.net/status?tags=platform,runtimes,services&view=n:i and check the status of the service.
16+
1. For service issues or 5xx errors, first, go to the [IBM Cloud status page](https://cloud.ibm.com/status?component=compare-comply%2Cdiscovery%2Cconversation%2Cwatson-vision-combined%2Cnatural-language-understanding%2Cnatural-language-classifier%2Clanguage-translator%2Cpersonality-insights%2Cspeech-to-text%2Ctext-to-speech%2Ctone-analyzer&selected=status) and check the status of the service.
1717
1. If the service status is OK, continue with a bug report.
1818

1919
---

.utility/generate_apidiff_index_html.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ echo '<!DOCTYPE html>
1717
<h1>IBM Watson Developer Cloud Java SDK API Diff</h1>
1818
</div>
1919
<p><a href="https://www.ibm.com/watson/developer/">Info</a>
20-
| <a href="https://console.bluemix.net/developer/watson/documentation">Documentation</a>
20+
| <a href="https://cloud.ibm.com/developer/watson/documentation">Documentation</a>
2121
| API Diff
2222
| <a href="https://github.com/watson-developer-cloud/java-sdk">GitHub</a>
2323
| <a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.ibm.watson.developer_cloud%22%20a%3A%22java-sdk%22">Maven</a>

.utility/generate_index_html.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ echo '<!DOCTYPE html>
1818
</div>
1919
2020
<p><a href="https://www.ibm.com/watson/developer/">Info</a>
21-
| <a href="https://console.bluemix.net/developer/watson/documentation">Documentation</a>
21+
| <a href="https://cloud.ibm.com/developer/watson/documentation">Documentation</a>
2222
| <a href="http://watson-developer-cloud.github.io/java-sdk/apidiff">API Diff</a>
2323
| <a href="https://github.com/watson-developer-cloud/java-sdk">GitHub</a>
2424
| <a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.ibm.watson.developer_cloud%22%20a%3A%22java-sdk%22">Maven</a>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Supplying the IAM API key:
248248
// in the constructor, letting the SDK manage the IAM token
249249
IamOptions options = new IamOptions.Builder()
250250
.apiKey("<iam_api_key>")
251-
.url("<iam_url>") // optional - the default value is https://iam.bluemix.net/identity/token
251+
.url("<iam_url>") // optional - the default value is https://iam.cloud.ibm.com/identity/token
252252
.build();
253253
Discovery service = new Discovery("2017-11-07", options);
254254
```

assistant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@ messageResponse = service.message(messageOptions).execute().getResult();
133133

134134
System.out.println(messageResponse);
135135
```
136-
[assistant]: https://console.bluemix.net/docs/services/assistant/index.html
136+
[assistant]: https://cloud.ibm.com/docs/services/assistant?topic=assistant-index

assistant/src/main/java/com/ibm/watson/assistant/v2/model/CreateSessionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public Builder newBuilder() {
8787
*
8888
* Unique identifier of the assistant. You can find the assistant ID of an assistant on the **Assistants** tab of the
8989
* Watson Assistant tool. For information about creating assistants, see the
90-
* [documentation](https://console.bluemix.net/docs/services/assistant/assistant-add.html#assistant-add-task).
90+
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-assistant-add#assistant-add-task).
9191
*
9292
* **Note:** Currently, the v2 API does not support creating assistants.
9393
*

assistant/src/main/java/com/ibm/watson/assistant/v2/model/DeleteSessionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public Builder newBuilder() {
105105
*
106106
* Unique identifier of the assistant. You can find the assistant ID of an assistant on the **Assistants** tab of the
107107
* Watson Assistant tool. For information about creating assistants, see the
108-
* [documentation](https://console.bluemix.net/docs/services/assistant/assistant-add.html#assistant-add-task).
108+
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-assistant-add#assistant-add-task).
109109
*
110110
* **Note:** Currently, the v2 API does not support creating assistants.
111111
*

assistant/src/main/java/com/ibm/watson/assistant/v2/model/MessageOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public Builder newBuilder() {
135135
*
136136
* Unique identifier of the assistant. You can find the assistant ID of an assistant on the **Assistants** tab of the
137137
* Watson Assistant tool. For information about creating assistants, see the
138-
* [documentation](https://console.bluemix.net/docs/services/assistant/assistant-add.html#assistant-add-task).
138+
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-assistant-add#assistant-add-task).
139139
*
140140
* **Note:** Currently, the v2 API does not support creating assistants.
141141
*

discovery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ QueryOptions queryOptions = new QueryOptions.Builder(environmentId, collectionId
3333
QueryResponse queryResponse = discovery.query(queryOptions).execute().getResult();
3434
```
3535

36-
[discovery]: https://console.bluemix.net/docs/services/discovery/getting-started.html
36+
[discovery]: https://cloud.ibm.com/docs/services/discovery?topic=discovery-gs-api

examples/src/main/java/com/ibm/watson/assistant/v1/tone_analyzer_integration/ToneDetection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class ToneDetection {
2929
/**
3030
* Thresholds for identifying meaningful tones returned by the Watson Tone Analyzer. Current values are based on the
3131
* recommendations made by the Watson Tone Analyzer at
32-
* https://console.bluemix.net/docs/services/tone-analyzer/using-tone.html These thresholds can be
32+
* https://cloud.ibm.com/docs/services/tone-analyzer?topic=tone-analyzer-utgpe These thresholds can be
3333
* adjusted to client/domain requirements.
3434
*/
3535
private static final Double PRIMARY_EMOTION_SCORE_THRESHOLD = 0.5;

0 commit comments

Comments
 (0)