diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/everything-you-need-to-know.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/everything-you-need-to-know.rst b/src/everything-you-need-to-know.rst index f478d55..f4892b2 100644 --- a/src/everything-you-need-to-know.rst +++ b/src/everything-you-need-to-know.rst | |||
@@ -919,7 +919,7 @@ Creating keystoneauth session directly | |||
919 | Command Line | 919 | Command Line |
920 | ============ | 920 | ============ |
921 | 921 | ||
922 | .. code-bock:: bash | 922 | .. code-block:: bash |
923 | 923 | ||
924 | openstack --os-cloud=vexxhost1 image list | 924 | openstack --os-cloud=vexxhost1 image list |
925 | 925 | ||
@@ -1075,7 +1075,7 @@ that would proxy to glance. It is removed in 2.36 and later. | |||
1075 | 1075 | ||
1076 | Making a GET call defaults to the minimum (2.1 in this case) | 1076 | Making a GET call defaults to the minimum (2.1 in this case) |
1077 | 1077 | ||
1078 | .. code-bock:: python | 1078 | .. code-block:: python |
1079 | 1079 | ||
1080 | import os_client_config | 1080 | import os_client_config |
1081 | 1081 | ||
@@ -1093,7 +1093,7 @@ Simple Microversion Example with Microversion | |||
1093 | Sending microversion 2.36 for the same call tells Nova to use the 2.36 | 1093 | Sending microversion 2.36 for the same call tells Nova to use the 2.36 |
1094 | behavior, which results in a 404. | 1094 | behavior, which results in a 404. |
1095 | 1095 | ||
1096 | .. code-bock:: python | 1096 | .. code-block:: python |
1097 | 1097 | ||
1098 | import os_client_config | 1098 | import os_client_config |
1099 | 1099 | ||
@@ -1112,7 +1112,7 @@ Create Server Group | |||
1112 | 1112 | ||
1113 | The server group doesn't matter - this is just to have an object to show. | 1113 | The server group doesn't matter - this is just to have an object to show. |
1114 | 1114 | ||
1115 | .. code-bock:: python | 1115 | .. code-block:: python |
1116 | 1116 | ||
1117 | import os_client_config | 1117 | import os_client_config |
1118 | 1118 | ||
@@ -1126,7 +1126,7 @@ Example of No Microversion Content Behavior | |||
1126 | 1126 | ||
1127 | No microversion specified. | 1127 | No microversion specified. |
1128 | 1128 | ||
1129 | .. code-bock:: python | 1129 | .. code-block:: python |
1130 | 1130 | ||
1131 | client.get('/os-server-groups') | 1131 | client.get('/os-server-groups') |
1132 | 1132 | ||
@@ -1141,7 +1141,7 @@ Example of Microversion Content Behavior | |||
1141 | 1141 | ||
1142 | Request microversion 2.13, which adds user_id and project_id. | 1142 | Request microversion 2.13, which adds user_id and project_id. |
1143 | 1143 | ||
1144 | .. code-bock:: python | 1144 | .. code-block:: python |
1145 | 1145 | ||
1146 | client.get('/os-server-groups', microversion='2.13').json() | 1146 | client.get('/os-server-groups', microversion='2.13').json() |
1147 | 1147 | ||