Skip to content

Commit c609b98

Browse files
committed
Update api-ref location
The api documentation is now published on docs.openstack.org instead of developer.openstack.org. Update all links that are changed to the new location. Note that redirects will be set up as well but let's point now to the new location. For details, see: http://lists.openstack.org/pipermail/openstack-discuss/2019-July/007828.html Change-Id: I1572a21632740b4d9a233a6a31c49e3bac5394ef
1 parent 5b97dfa commit c609b98

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

openstackclient/api/compute_v2.py

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def floating_ip_create(
145145
):
146146
"""Create a new floating ip
147147
148-
https://developer.openstack.org/api-ref/compute/#create-allocate-floating-ip-address
148+
https://docs.openstack.org/api-ref/compute/#create-allocate-floating-ip-address
149149
150150
:param pool: Name of floating IP pool
151151
"""
@@ -170,7 +170,7 @@ def floating_ip_delete(
170170
):
171171
"""Delete a floating IP
172172
173-
https://developer.openstack.org/api-ref/compute/#delete-deallocate-floating-ip-address
173+
https://docs.openstack.org/api-ref/compute/#delete-deallocate-floating-ip-address
174174
175175
:param string floating_ip_id:
176176
Floating IP ID
@@ -189,7 +189,7 @@ def floating_ip_find(
189189
):
190190
"""Return a security group given name or ID
191191
192-
https://developer.openstack.org/api-ref/compute/#list-floating-ip-addresses
192+
https://docs.openstack.org/api-ref/compute/#list-floating-ip-addresses
193193
194194
:param string floating_ip:
195195
Floating IP address
@@ -209,7 +209,7 @@ def floating_ip_list(
209209
):
210210
"""Get floating IPs
211211
212-
https://developer.openstack.org/api-ref/compute/#show-floating-ip-address-details
212+
https://docs.openstack.org/api-ref/compute/#show-floating-ip-address-details
213213
214214
:returns:
215215
list of floating IPs
@@ -258,7 +258,7 @@ def floating_ip_pool_list(
258258
):
259259
"""Get floating IP pools
260260
261-
https://developer.openstack.org/api-ref/compute/?expanded=#list-floating-ip-pools
261+
https://docs.openstack.org/api-ref/compute/?expanded=#list-floating-ip-pools
262262
263263
:returns:
264264
list of floating IP pools
@@ -276,7 +276,7 @@ def host_list(
276276
):
277277
"""Lists hypervisor Hosts
278278
279-
https://developer.openstack.org/api-ref/compute/#list-hosts
279+
https://docs.openstack.org/api-ref/compute/#list-hosts
280280
Valid for Compute 2.0 - 2.42
281281
282282
:param string zone:
@@ -299,7 +299,7 @@ def host_set(
299299
):
300300
"""Modify host properties
301301
302-
https://developer.openstack.org/api-ref/compute/#update-host-status
302+
https://docs.openstack.org/api-ref/compute/#update-host-status
303303
Valid for Compute 2.0 - 2.42
304304
305305
status
@@ -329,7 +329,7 @@ def host_show(
329329
):
330330
"""Show host
331331
332-
https://developer.openstack.org/api-ref/compute/#show-host-details
332+
https://docs.openstack.org/api-ref/compute/#show-host-details
333333
Valid for Compute 2.0 - 2.42
334334
"""
335335

@@ -356,7 +356,7 @@ def network_create(
356356
):
357357
"""Create a new network
358358
359-
https://developer.openstack.org/api-ref/compute/#create-network
359+
https://docs.openstack.org/api-ref/compute/#create-network
360360
361361
:param string name:
362362
Network label (required)
@@ -387,7 +387,7 @@ def network_delete(
387387
):
388388
"""Delete a network
389389
390-
https://developer.openstack.org/api-ref/compute/#delete-network
390+
https://docs.openstack.org/api-ref/compute/#delete-network
391391
392392
:param string network:
393393
Network name or ID
@@ -411,7 +411,7 @@ def network_find(
411411
):
412412
"""Return a network given name or ID
413413
414-
https://developer.openstack.org/api-ref/compute/#show-network-details
414+
https://docs.openstack.org/api-ref/compute/#show-network-details
415415
416416
:param string network:
417417
Network name or ID
@@ -431,7 +431,7 @@ def network_list(
431431
):
432432
"""Get networks
433433
434-
https://developer.openstack.org/api-ref/compute/#list-networks
434+
https://docs.openstack.org/api-ref/compute/#list-networks
435435
436436
:returns:
437437
list of networks
@@ -450,7 +450,7 @@ def security_group_create(
450450
):
451451
"""Create a new security group
452452
453-
https://developer.openstack.org/api-ref/compute/#create-security-group
453+
https://docs.openstack.org/api-ref/compute/#create-security-group
454454
455455
:param string name:
456456
Security group name
@@ -476,7 +476,7 @@ def security_group_delete(
476476
):
477477
"""Delete a security group
478478
479-
https://developer.openstack.org/api-ref/compute/#delete-security-group
479+
https://docs.openstack.org/api-ref/compute/#delete-security-group
480480
481481
:param string security_group:
482482
Security group name or ID
@@ -500,7 +500,7 @@ def security_group_find(
500500
):
501501
"""Return a security group given name or ID
502502
503-
https://developer.openstack.org/api-ref/compute/#show-security-group-details
503+
https://docs.openstack.org/api-ref/compute/#show-security-group-details
504504
505505
:param string security_group:
506506
Security group name or ID
@@ -523,7 +523,7 @@ def security_group_list(
523523
):
524524
"""Get security groups
525525
526-
https://developer.openstack.org/api-ref/compute/#list-security-groups
526+
https://docs.openstack.org/api-ref/compute/#list-security-groups
527527
528528
:param integer limit:
529529
query return count limit
@@ -556,7 +556,7 @@ def security_group_set(
556556
):
557557
"""Update a security group
558558
559-
https://developer.openstack.org/api-ref/compute/#update-security-group
559+
https://docs.openstack.org/api-ref/compute/#update-security-group
560560
561561
:param string security_group:
562562
Security group name or ID
@@ -600,7 +600,7 @@ def security_group_rule_create(
600600
):
601601
"""Create a new security group rule
602602
603-
https://developer.openstack.org/api-ref/compute/#create-security-group-rule
603+
https://docs.openstack.org/api-ref/compute/#create-security-group-rule
604604
605605
:param string security_group_id:
606606
Security group ID
@@ -643,7 +643,7 @@ def security_group_rule_delete(
643643
):
644644
"""Delete a security group rule
645645
646-
https://developer.openstack.org/api-ref/compute/#delete-security-group-rule
646+
https://docs.openstack.org/api-ref/compute/#delete-security-group-rule
647647
648648
:param string security_group_rule_id:
649649
Security group rule ID

0 commit comments

Comments
 (0)