Skip to content

Commit 73ea275

Browse files
committed
#1305 update the old Bluemix URLs to the IBM Cloud Docs URL
1 parent 08037a5 commit 73ea275

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ https://github.com/softlayer/softlayer-python/compare/v5.8.2...v5.8.3
228228
## [5.6.0] - 2018-10-16
229229
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.3...v5.6.0
230230

231-
+ #1026 Support for [Reserved Capacity](https://console.bluemix.net/docs/vsi/vsi_about_reserved.html#about-reserved-virtual-servers)
231+
+ #1026 Support for [Reserved Capacity](https://cloud.ibm.com/docs/virtual-servers?topic=virtual-servers-about-reserved-virtual-servers)
232232
* `slcli vs capacity create`
233233
* `slcli vs capacity create-guest`
234234
* `slcli vs capacity create-options`

SoftLayer/CLI/block/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def cli(env, storage_type, size, iops, tier, os_type,
6363
"""Order a block storage volume.
6464
6565
Valid size and iops options can be found here:
66-
https://console.bluemix.net/docs/infrastructure/BlockStorage/index.html#provisioning
66+
https://cloud.ibm.com/docs/BlockStorage/index.html#provisioning-considerations
6767
"""
6868
block_manager = SoftLayer.BlockStorageManager(env.client)
6969
storage_type = storage_type.lower()

SoftLayer/CLI/file/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def cli(env, storage_type, size, iops, tier,
5252
"""Order a file storage volume.
5353
5454
Valid size and iops options can be found here:
55-
https://console.bluemix.net/docs/infrastructure/FileStorage/index.html#provisioning
55+
https://cloud.ibm.com/docs/FileStorage/index.html#provisioning-considerations
5656
"""
5757
file_manager = SoftLayer.FileStorageManager(env.client)
5858
storage_type = storage_type.lower()

SoftLayer/CLI/image/export.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
default=None,
1717
help="The IBM Cloud API Key with access to IBM Cloud Object "
1818
"Storage instance. For help creating this key see "
19-
"https://console.bluemix.net/docs/services/cloud-object-"
20-
"storage/iam/users-serviceids.html#serviceidapikeys")
19+
"https://cloud.ibm.com/docs/cloud-object-storage?"
20+
"topic=cloud-object-storage-iam-overview#iam-overview"
21+
"-service-id-api-key "
22+
)
2123
@environment.pass_env
2224
def cli(env, identifier, uri, ibm_api_key):
2325
"""Export an image to object storage.

SoftLayer/CLI/image/import.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
default=None,
2323
help="The IBM Cloud API Key with access to IBM Cloud Object "
2424
"Storage instance and IBM KeyProtect instance. For help "
25-
"creating this key see https://console.bluemix.net/docs/"
26-
"services/cloud-object-storage/iam/users-serviceids.html"
27-
"#serviceidapikeys")
25+
"creating this key see https://cloud.ibm.com/docs/"
26+
"cloud-object-storage?topic=cloud-object-storage"
27+
"-iam-overview#iam-overview-service-id-api-key")
2828
@click.option('--root-key-crn',
2929
default=None,
3030
help="CRN of the root key in your KMS instance")
3131
@click.option('--wrapped-dek',
3232
default=None,
3333
help="Wrapped Data Encryption Key provided by IBM KeyProtect. "
34-
"For more info see https://console.bluemix.net/docs/"
35-
"services/key-protect/wrap-keys.html#wrap-keys")
34+
"For more info see "
35+
"https://cloud.ibm.com/docs/key-protect?topic=key-protect-wrap-keys")
3636
@click.option('--cloud-init',
3737
is_flag=True,
3838
help="Specifies if image is cloud-init")

SoftLayer/managers/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ImageManager(utils.IdentifierMixin, object):
1717
"""Manages SoftLayer server images.
1818
1919
See product information here:
20-
https://console.bluemix.net/docs/infrastructure/image-templates/image_index.html
20+
https://cloud.ibm.com/docs/image-templates
2121
2222
:param SoftLayer.API.BaseClient client: the client instance
2323
"""

SoftLayer/managers/vs_capacity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class CapacityManager(utils.IdentifierMixin, object):
2424
2525
Product Information
2626
27-
- https://console.bluemix.net/docs/vsi/vsi_about_reserved.html
27+
- https://cloud.ibm.com/docs/virtual-servers?topic=virtual-servers-about-reserved-virtual-servers
2828
- https://softlayer.github.io/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/
2929
- https://softlayer.github.io/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/
3030

docs/cli/vs/reserved_capacity.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Working with Reserved Capacity
55
There are two main concepts for Reserved Capacity. The `Reserved Capacity Group <https://softlayer.github.io/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/>`_ and the `Reserved Capacity Instance <https://softlayer.github.io/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/>`_
66
The Reserved Capacity Group, is a set block of capacity set aside for you at the time of the order. It will contain a set number of Instances which are all the same size. Instances can be ordered like normal VSIs, with the exception that you need to include the reservedCapacityGroupId, and it must be the same size as the group you are ordering the instance in.
77

8-
- `About Reserved Capacity <https://console.bluemix.net/docs/vsi/vsi_about_reserved.html>`_
9-
- `Reserved Capacity FAQ <https://console.bluemix.net/docs/docs/vsi/vsi_faqs_reserved.html>`_
8+
- `About Reserved Capacity <https://cloud.ibm.com/docs/virtual-servers?topic=virtual-servers-about-reserved-virtual-servers>`_
9+
- `Reserved Capacity FAQ <https://cloud.ibm.com/docs/virtual-servers?topic=virtual-servers-faqs-reserved-capacity-and-instances#faqs-reserved-capacity-and-instances>`_
1010

1111
The SLCLI supports some basic Reserved Capacity Features.
1212

0 commit comments

Comments
 (0)