Remove api-quick-start
The document is now in openstack-manuals, we can remove it here completely together with the jobs for building it. Add a redirect to new location. Depends-On: https://review.opendev.org/671115 Change-Id: Ife74ae2b83bdae1e206b0705faf6f623428a3f1f
This commit is contained in:
parent
d2e1f23d91
commit
57ca6e1317
@ -1,4 +1,3 @@
|
||||
- project:
|
||||
templates:
|
||||
- openstack-manuals-developer-build-translation
|
||||
- openstack-manuals-developer-jobs
|
||||
|
@ -1,22 +0,0 @@
|
||||
[metadata]
|
||||
name = OpenStack API Documentation
|
||||
summary = OpenStack API Documentation
|
||||
description-file =
|
||||
README.rst
|
||||
author = OpenStack Documentation
|
||||
author-email = openstack-docs@lists.openstack.org
|
||||
home-page = https://developer.openstack.org/
|
||||
classifier =
|
||||
Intended Audience :: Developers
|
||||
License :: OSI Approved :: Apache Software License
|
||||
|
||||
[build_sphinx]
|
||||
all_files = 1
|
||||
build-dir = build
|
||||
source-dir = source
|
||||
|
||||
[pbr]
|
||||
warnerrors = True
|
||||
|
||||
[wheel]
|
||||
universal = 1
|
@ -1,6 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['pbr'],
|
||||
pbr=True)
|
@ -1,575 +0,0 @@
|
||||
.. _openstack_API_quick_guide:
|
||||
|
||||
==============
|
||||
OpenStack APIs
|
||||
==============
|
||||
|
||||
To authenticate access to OpenStack services, you must first issue an
|
||||
authentication request with a payload of credentials to OpenStack Identity to
|
||||
get an authentication token.
|
||||
|
||||
Credentials are usually a combination of your user name and password,
|
||||
and optionally, the name or ID of the project of your cloud.
|
||||
Ask your cloud administrator for your user name, password, and project so
|
||||
that you can generate authentication tokens. Alternatively, you can
|
||||
supply a token rather than a user name and password.
|
||||
|
||||
When you send API requests, you include the token in the ``X-Auth-Token``
|
||||
header. If you access multiple OpenStack services, you must get a token for
|
||||
each service. A token is valid for a limited time before it expires. A token
|
||||
can also become invalid for other reasons. For example, if the roles for a
|
||||
user change, existing tokens for that user are no longer valid.
|
||||
|
||||
Authentication and API request workflow
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
#. Request an authentication token from the Identity endpoint that your
|
||||
cloud administrator gave you. Send a payload of credentials in the
|
||||
request as shown in :ref:`authenticate`. If the request succeeds, the server
|
||||
returns an authentication token.
|
||||
|
||||
#. Send API requests and include the token in the ``X-Auth-Token``
|
||||
header. Continue to send API requests with that token until the service
|
||||
completes the request or the Unauthorized (401) error occurs.
|
||||
|
||||
#. If the Unauthorized (401) error occurs, request another token.
|
||||
|
||||
The examples in this section use cURL commands. For information about cURL,
|
||||
see http://curl.haxx.se/. For information about the OpenStack APIs, see
|
||||
:ref:`current_api_versions`.
|
||||
|
||||
|
||||
.. _authenticate:
|
||||
|
||||
Authenticate
|
||||
~~~~~~~~~~~~
|
||||
|
||||
The payload of credentials to authenticate contains these parameters:
|
||||
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| Parameter | Type | Description |
|
||||
+=======================+================+======================================+
|
||||
| *User Domain* | string | The Domain of the user. |
|
||||
| (required) | | |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| username (required) | string | The user name. If you do not provide |
|
||||
| | | a user name and password, you must |
|
||||
| | | provide a token. |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| password (required) | string | The password for the user. |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| *Project Domain* | string | The Domain of the project. This is a |
|
||||
| (optional) | | required part of the scope object. |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| *Project Name* | string | The project name. Both the |
|
||||
| (optional) | | *Project ID* and *Project Name* |
|
||||
| | | are optional. |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
| *Project ID* | string | The project ID. Both the *project ID*|
|
||||
| (optional) | | and *Project Name* are optional. But |
|
||||
| | | one of them is required along with |
|
||||
| | | the *Project Domain*. They are |
|
||||
| | | wrapped under a scope object. |
|
||||
| | | If you do not know the project name |
|
||||
| | | or ID, send a request without any |
|
||||
| | | scope object. |
|
||||
+-----------------------+----------------+--------------------------------------+
|
||||
|
||||
|
||||
In a typical OpenStack deployment that runs Identity, you can specify your
|
||||
project name, and user name and password credentials to authenticate.
|
||||
|
||||
First, export your project name to the ``OS_PROJECT_NAME`` environment variable,
|
||||
your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` environment variable,
|
||||
your user name to the ``OS_USERNAME`` environment variable, your password to the
|
||||
``OS_PASSWORD`` environment variable and your user domain name to the
|
||||
``OS_USER_DOMAIN_NAME`` environment variable.
|
||||
|
||||
The example below uses an endpoint from an installation of Ocata by following
|
||||
the installation guide. However, you can also use ``$OS_AUTH_URL`` as an
|
||||
environment variable as needed to change the URL.
|
||||
|
||||
Then, run this cURL command to request a token:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ curl -v -s -X POST $OS_AUTH_URL/auth/tokens?nocatalog -H "Content-Type: application/json" -d '{ "auth": { "identity": { "methods": ["password"],"password": {"user": {"domain": {"name": "'"$OS_USER_DOMAIN_NAME"'"},"name": "'"$OS_USERNAME"'", "password": "'"$OS_PASSWORD"'"} } }, "scope": { "project": { "domain": { "name": "'"$OS_PROJECT_DOMAIN_NAME"'" }, "name": "'"$OS_PROJECT_NAME"'" } } }}' \
|
||||
| python -m json.tool
|
||||
|
||||
If the request succeeds, it returns the ``Created (201)`` response code
|
||||
along with the token as a value in the ``X-Subject-Token`` response header.
|
||||
The header is followed by a response body that has an object of type
|
||||
``token`` which has the token expiration date and time in the form
|
||||
``"expires_at":"datetime"`` along with other attributes.
|
||||
|
||||
The following example shows a successful response:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
* Trying 192.168.56.101...
|
||||
* Connected to controller (192.168.56.101) port 5000 (#0)
|
||||
> POST /v3/auth/tokens?nocatalog HTTP/1.1
|
||||
> Host: controller:5000
|
||||
> User-Agent: curl/7.47.0
|
||||
> Accept: */*
|
||||
> Content-Type: application/json
|
||||
> Content-Length: 226
|
||||
>
|
||||
} [226 bytes data]
|
||||
* upload completely sent off: 226 out of 226 bytes
|
||||
< HTTP/1.1 201 Created
|
||||
< Date: Fri, 26 May 2017 06:48:58 GMT
|
||||
< Server: Apache/2.4.18 (Ubuntu)
|
||||
< X-Subject-Token: gAAAAABZJ8_a7aiq1SnOhbNw8vFb5WZChcvWdzzUAFzhiB99BHrjdSGai--_-JstU3WazsFXmRHNbD07qOQKTp5Sen2R_b9csaDkU49VXqSaJ0jh2nAlwJkys8aazz2oa3xSeUVe3Ndv_HRiW23-iWTr6jquK_AXdhRX7nvM4lmVTrxXFpelnJQ
|
||||
< Vary: X-Auth-Token
|
||||
< X-Distribution: Ubuntu
|
||||
< x-openstack-request-id: req-0e9239ec-104b-40e0-a337-dca91fb24387
|
||||
< Content-Length: 521
|
||||
< Content-Type: application/json
|
||||
<
|
||||
{ [521 bytes data]
|
||||
* Connection #0 to host controller left intact
|
||||
{
|
||||
"token": {
|
||||
"audit_ids": [
|
||||
"HOGlhnMFT52xY7PjbuJZlA"
|
||||
],
|
||||
"expires_at": "2017-05-26T07:48:58.000000Z",
|
||||
"is_domain": false,
|
||||
"issued_at": "2017-05-26T06:48:58.000000Z",
|
||||
"methods": [
|
||||
"password"
|
||||
],
|
||||
"project": {
|
||||
"domain": {
|
||||
"id": "default",
|
||||
"name": "Default"
|
||||
},
|
||||
"id": "05ef0bf2a79c42b2b8155873b6404061",
|
||||
"name": "demo"
|
||||
},
|
||||
"roles": [
|
||||
{
|
||||
"id": "b18239b7026042ef8695c3c4cf10607b",
|
||||
"name": "user"
|
||||
}
|
||||
],
|
||||
"user": {
|
||||
"domain": {
|
||||
"id": "default",
|
||||
"name": "Default"
|
||||
},
|
||||
"id": "12846256e60c42f88d0e1ba9711a57f5",
|
||||
"name": "demo",
|
||||
"password_expires_at": null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.. note::
|
||||
In the above request, the query string ``nocatalog`` is used as you
|
||||
just want to get a token and do not want the service catalog
|
||||
(if it is available for the user) cluttering the output.
|
||||
If a user wants to get the service catalog, this query string need
|
||||
not be appended to the URL.
|
||||
|
||||
Send API requests
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
This section shows how to make some basic Compute API calls. For a complete
|
||||
list of Compute API calls, see
|
||||
`Compute API <https://developer.openstack.org/api-ref/compute/>`__.
|
||||
|
||||
Export the token ID to the ``OS_TOKEN`` environment variable. For example:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
export OS_TOKEN=gAAAAABZJ8_a7aiq1SnOhbNw8vFb5WZChcvWdzzUAFzhiB99BHrjdSGai--_-JstU3WazsFXmRHNbD07qOQKTp5Sen2R_b9csaDkU49VXqSaJ0jh2nAlwJkys8aazz2oa3xSeUVe3Ndv_HRiW23-iWTr6jquK_AXdhRX7nvM4lmVTrxXFpelnJQ
|
||||
|
||||
The token expires every hour by default,
|
||||
though it can be configured differently - see
|
||||
the `expiration <https://docs.openstack.org/keystone/latest/configuration/config-options.html#token.expiration>`__ option in the
|
||||
the *Identity Service Configuration Guide*.
|
||||
|
||||
Export the project name to the ``OS_PROJECT_NAME`` environment variable. For example:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
export OS_PROJECT_NAME=demo
|
||||
|
||||
Then, use the Compute API to list flavors, substituting the Compute API endpoint with
|
||||
one containing your project ID below:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ curl -s -H "X-Auth-Token: $OS_TOKEN" \
|
||||
$OS_COMPUTE_API/flavors \
|
||||
| python -m json.tool
|
||||
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"flavors": [
|
||||
{
|
||||
"id": "1",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/flavors/1",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/flavors/1",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "m1.tiny"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/flavors/2",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/flavors/2",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "m1.small"
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/flavors/3",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/flavors/3",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "m1.medium"
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/flavors/4",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/flavors/4",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "m1.large"
|
||||
},
|
||||
{
|
||||
"id": "5",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/flavors/5",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/flavors/5",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "m1.xlarge"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Export the $OS_PROJECT_ID from the token call, and then
|
||||
use the Compute API to list images:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ curl -s -H "X-Auth-Token: $OS_TOKEN" \
|
||||
http://8.21.28.222:8774/v2/$OS_PROJECT_ID/images \
|
||||
| python -m json.tool
|
||||
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"images": [
|
||||
{
|
||||
"id": "2dadcc7b-3690-4a1d-97ce-011c55426477",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/images/2dadcc7b-3690-4a1d-97ce-011c55426477",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/images/2dadcc7b-3690-4a1d-97ce-011c55426477",
|
||||
"rel": "bookmark"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:9292/f9828a18c6484624b571e85728780ba8/images/2dadcc7b-3690-4a1d-97ce-011c55426477",
|
||||
"type": "application/vnd.openstack.image",
|
||||
"rel": "alternate"
|
||||
}
|
||||
],
|
||||
"name": "Fedora 21 x86_64"
|
||||
},
|
||||
{
|
||||
"id": "cfba3478-8645-4bc8-97e8-707b9f41b14e",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/images/cfba3478-8645-4bc8-97e8-707b9f41b14e",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/images/cfba3478-8645-4bc8-97e8-707b9f41b14e",
|
||||
"rel": "bookmark"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:9292/f9828a18c6484624b571e85728780ba8/images/cfba3478-8645-4bc8-97e8-707b9f41b14e",
|
||||
"type": "application/vnd.openstack.image",
|
||||
"rel": "alternate"
|
||||
}
|
||||
],
|
||||
"name": "Ubuntu 14.04 amd64"
|
||||
},
|
||||
{
|
||||
"id": "2e4c08a9-0ecd-4541-8a45-838479a88552",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/images/2e4c08a9-0ecd-4541-8a45-838479a88552",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/images/2e4c08a9-0ecd-4541-8a45-838479a88552",
|
||||
"rel": "bookmark"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:9292/f9828a18c6484624b571e85728780ba8/images/2e4c08a9-0ecd-4541-8a45-838479a88552",
|
||||
"type": "application/vnd.openstack.image",
|
||||
"rel": "alternate"
|
||||
}
|
||||
],
|
||||
"name": "CentOS 7 x86_64"
|
||||
},
|
||||
{
|
||||
"id": "c8dd9096-60c1-4e23-a486-82955481df9f",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/images/c8dd9096-60c1-4e23-a486-82955481df9f",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/images/c8dd9096-60c1-4e23-a486-82955481df9f",
|
||||
"rel": "bookmark"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:9292/f9828a18c6484624b571e85728780ba8/images/c8dd9096-60c1-4e23-a486-82955481df9f",
|
||||
"type": "application/vnd.openstack.image",
|
||||
"rel": "alternate"
|
||||
}
|
||||
],
|
||||
"name": "CentOS 6.5 x86_64"
|
||||
},
|
||||
{
|
||||
"id": "f97b8d36-935e-4666-9c58-8a0afc6d3796",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f9828a18c6484624b571e85728780ba8/images/f97b8d36-935e-4666-9c58-8a0afc6d3796",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f9828a18c6484624b571e85728780ba8/images/f97b8d36-935e-4666-9c58-8a0afc6d3796",
|
||||
"rel": "bookmark"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:9292/f9828a18c6484624b571e85728780ba8/images/f97b8d36-935e-4666-9c58-8a0afc6d3796",
|
||||
"type": "application/vnd.openstack.image",
|
||||
"rel": "alternate"
|
||||
}
|
||||
],
|
||||
"name": "Fedora 20 x86_64"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Export the $OS_PROJECT_ID from the token call, and then
|
||||
use the Compute API to list servers:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ curl -s -H "X-Auth-Token: $OS_TOKEN" \
|
||||
http://8.21.28.222:8774/v2/$OS_PROJECT_ID/servers \
|
||||
| python -m json.tool
|
||||
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"servers": [
|
||||
{
|
||||
"id": "41551256-abd6-402c-835b-e87e559b2249",
|
||||
"links": [
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/v2/f8828a18c6484624b571e85728780ba8/servers/41551256-abd6-402c-835b-e87e559b2249",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "http://8.21.28.222:8774/f8828a18c6484624b571e85728780ba8/servers/41551256-abd6-402c-835b-e87e559b2249",
|
||||
"rel": "bookmark"
|
||||
}
|
||||
],
|
||||
"name": "test-server"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
.. _client-intro:
|
||||
|
||||
OpenStack command-line clients
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
For scripting work and simple requests, you can use a command-line client like
|
||||
the ``openstack-client`` client. This client enables you to use the Identity,
|
||||
Compute, Block Storage, and Object Storage APIs through a command-line
|
||||
interface. Also, each OpenStack project has a related client project that
|
||||
includes Python API bindings and a command-line interface (CLI).
|
||||
|
||||
For information about the command-line clients, see `OpenStack
|
||||
Command-Line Interface Reference <https://docs.openstack.org/cli-reference/>`__.
|
||||
|
||||
Install the clients
|
||||
-------------------
|
||||
|
||||
Use ``pip`` to install the OpenStack clients on a Mac OS X or Linux system. It
|
||||
is easy and ensures that you get the latest version of the client from the
|
||||
`Python Package Index <https://pypi.org/>`__. Also, ``pip`` lets you
|
||||
update or remove a package.
|
||||
|
||||
You must install the client for each project separately, but the
|
||||
``python-openstackclient`` covers multiple projects.
|
||||
|
||||
Install or update a client package:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sudo pip install [--upgrade] python-PROJECTclient
|
||||
|
||||
Where *PROJECT* is the project name.
|
||||
|
||||
For example, install the ``openstack`` client:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sudo pip install python-openstackclient
|
||||
|
||||
To update the ``openstack`` client, run this command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sudo pip install --upgrade python-openstackclient
|
||||
|
||||
To remove the ``openstack`` client, run this command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sudo pip uninstall python-openstackclient
|
||||
|
||||
Before you can issue client commands, you must download and source the
|
||||
``openrc`` file to set environment variables.
|
||||
|
||||
For complete information about the OpenStack clients, including how to source
|
||||
the ``openrc`` file, see `OpenStack End User Guide <https://docs.openstack.org/user-guide/>`__,
|
||||
`OpenStack Administrator Guide <https://docs.openstack.org/admin-guide/>`__,
|
||||
and `OpenStack Command-Line Interface Reference <https://docs.openstack.org/cli-reference/>`__.
|
||||
|
||||
Launch an instance
|
||||
------------------
|
||||
|
||||
To launch instances, you must choose a name, an image, and a flavor for
|
||||
your instance.
|
||||
|
||||
To list available images, call the Compute API through the ``openstack``
|
||||
client:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ openstack image list
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
+--------------------------------------+------------------+
|
||||
| ID | Name |
|
||||
+--------------------------------------+------------------+
|
||||
| a5604931-af06-4512-8046-d43aabf272d3 | fedora-20.x86_64 |
|
||||
+--------------------------------------+------------------+
|
||||
|
||||
To list flavors, run this command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ openstack flavor list
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
+----+-----------+-----------+------+-----------+------+-------+-----------+
|
||||
| ID | Name | Memory_MB | Disk | Ephemeral | Swap | VCPUs | Is_Public |
|
||||
+----+-----------+-----------+------+-----------+------+-------+-----------+
|
||||
| 1 | m1.tiny | 512 | 0 | 0 | | 1 | True |
|
||||
| 2 | m1.small | 2048 | 20 | 0 | | 1 | True |
|
||||
| 3 | m1.medium | 4096 | 40 | 0 | | 2 | True |
|
||||
| 4 | m1.large | 8192 | 80 | 0 | | 4 | True |
|
||||
| 42 | m1.nano | 64 | 0 | 0 | | 1 | True |
|
||||
| 5 | m1.xlarge | 16384 | 160 | 0 | | 8 | True |
|
||||
| 84 | m1.micro | 128 | 0 | 0 | | 1 | True |
|
||||
+----+-----------+-----------+------+-----------+------+-------+-----------+
|
||||
|
||||
To launch an instance, note the IDs of your desired image and flavor.
|
||||
|
||||
To launch the ``my_instance`` instance, run the ``openstack server create``
|
||||
command with the image and flavor IDs and the server name:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ openstack server create --image a5604931-af06-4512-8046-d43aabf272d3 --flavor 1 my_instance
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
+--------------------------------------+---------------------------------------------------------+
|
||||
| Field | Value |
|
||||
+--------------------------------------+---------------------------------------------------------+
|
||||
| OS-DCF:diskConfig | MANUAL |
|
||||
| OS-EXT-AZ:availability_zone | nova |
|
||||
| OS-EXT-STS:power_state | 0 |
|
||||
| OS-EXT-STS:task_state | scheduling |
|
||||
| OS-EXT-STS:vm_state | building |
|
||||
| OS-SRV-USG:launched_at | None |
|
||||
| OS-SRV-USG:terminated_at | None |
|
||||
| accessIPv4 | |
|
||||
| accessIPv6 | |
|
||||
| addresses | |
|
||||
| adminPass | 3vgzpLzChoac |
|
||||
| config_drive | |
|
||||
| created | 2015-08-27T03:02:27Z |
|
||||
| flavor | m1.tiny (1) |
|
||||
| hostId | |
|
||||
| id | 1553694c-d711-4954-9b20-84b8cb4598c6 |
|
||||
| image | fedora-20.x86_64 (a5604931-af06-4512-8046-d43aabf272d3) |
|
||||
| key_name | None |
|
||||
| name | my_instance |
|
||||
| os-extended-volumes:volumes_attached | [] |
|
||||
| progress | 0 |
|
||||
| project_id | 9f0e4aa4fd3d4b0ea3184c0fe7a32210 |
|
||||
| properties | |
|
||||
| security_groups | [{u'name': u'default'}] |
|
||||
| status | BUILD |
|
||||
| updated | 2015-08-27T03:02:28Z |
|
||||
| user_id | b3ce0cfc170641e98ff5e42b1be9c85a |
|
||||
+--------------------------------------+---------------------------------------------------------+
|
||||
|
||||
.. note::
|
||||
For information about the default ports that the OpenStack components use,
|
||||
see `Firewalls and default ports <https://docs.openstack.org/install-guide/firewalls-default-ports.html>`_
|
||||
in the *OpenStack Installation Guide*.
|
||||
|
@ -1,296 +0,0 @@
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
# implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# This file is execfile()d with the current directory set to its
|
||||
# containing dir.
|
||||
#
|
||||
# Note that not all possible configuration values are present in this
|
||||
# autogenerated file.
|
||||
#
|
||||
# All configuration values have a default; values that are commented out
|
||||
# serve to show the default.
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
# sys.path.insert(0, os.path.abspath('.'))
|
||||
|
||||
# -- General configuration ------------------------------------------------
|
||||
|
||||
# If your documentation needs a minimal Sphinx version, state it here.
|
||||
# needs_sphinx = '1.0'
|
||||
|
||||
# Add any Sphinx extension module names here, as strings. They can be
|
||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
# ones.
|
||||
extensions = ['openstackdocstheme']
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
# templates_path = ['_templates']
|
||||
|
||||
# The suffix of source filenames.
|
||||
source_suffix = '.rst'
|
||||
|
||||
# The encoding of source files.
|
||||
# source_encoding = 'utf-8-sig'
|
||||
|
||||
# The master toctree document.
|
||||
master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
repository_name = 'openstack/api-site'
|
||||
project = u'Openstack-API-Documentation'
|
||||
bug_project = 'openstack-api-site'
|
||||
bug_tag = u'api-site'
|
||||
copyright = u'2017, OpenStack contributors'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.1'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.1'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
# language = None
|
||||
|
||||
# There are two options for replacing |today|: either, you set today to some
|
||||
# non-false value, then it is used:
|
||||
# today = ''
|
||||
# Else, today_fmt is used as the format for a strftime call.
|
||||
# today_fmt = '%B %d, %Y'
|
||||
|
||||
# List of patterns, relative to source directory, that match files and
|
||||
# directories to ignore when looking for source files.
|
||||
exclude_patterns = []
|
||||
|
||||
# The reST default role (used for this markup: `text`) to use for all
|
||||
# documents.
|
||||
# default_role = None
|
||||
|
||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||
# add_function_parentheses = True
|
||||
|
||||
# If true, the current module name will be prepended to all description
|
||||
# unit titles (such as .. function::).
|
||||
# add_module_names = True
|
||||
|
||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
||||
# output. They are ignored by default.
|
||||
# show_authors = False
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
# A list of ignored prefixes for module index sorting.
|
||||
# modindex_common_prefix = []
|
||||
|
||||
# If true, keep warnings as "system message" paragraphs in the built documents.
|
||||
# keep_warnings = False
|
||||
|
||||
|
||||
# -- Options for HTML output ----------------------------------------------
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
html_theme = 'openstackdocs'
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
# documentation.
|
||||
# html_theme_options = {}
|
||||
|
||||
# To use the API Reference sidebar dropdown menu,
|
||||
# uncomment the html_theme_options parameter. The theme
|
||||
# variable, sidebar_dropdown, should be set to `api_ref`.
|
||||
# Otherwise, the list of links for the User and Ops docs
|
||||
# appear in the sidebar dropdown menu.
|
||||
html_theme_options = {"sidebar_dropdown": "api_ref",
|
||||
"sidebar_mode": "toc"}
|
||||
|
||||
# Add any paths that contain custom themes here, relative to this directory.
|
||||
# html_theme_path = [openstackdocstheme.get_html_theme_path()]
|
||||
|
||||
# The name for this set of Sphinx documents. If None, it defaults to
|
||||
# "<project> v<release> documentation".
|
||||
# html_title = None
|
||||
|
||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||
# html_short_title = None
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top
|
||||
# of the sidebar.
|
||||
# html_logo = None
|
||||
|
||||
# The name of an image file (within the static path) to use as favicon of the
|
||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
||||
# pixels large.
|
||||
# html_favicon = None
|
||||
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
# html_static_path = ['_static']
|
||||
|
||||
# Add any extra paths that contain custom files (such as robots.txt or
|
||||
# .htaccess) here, relative to this directory. These files are copied
|
||||
# directly to the root of the documentation.
|
||||
# html_extra_path = []
|
||||
|
||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||
# using the given strftime format.
|
||||
# So that we can enable "log-a-bug" links from each output HTML page, this
|
||||
# variable must be set to a format that includes year, month, day, hours and
|
||||
# minutes.
|
||||
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
||||
|
||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
||||
# typographically correct entities.
|
||||
# html_use_smartypants = True
|
||||
|
||||
# Custom sidebar templates, maps document names to template names.
|
||||
# html_sidebars = {}
|
||||
|
||||
# Additional templates that should be rendered to pages, maps page names to
|
||||
# template names.
|
||||
# html_additional_pages = {}
|
||||
|
||||
# If false, no module index is generated.
|
||||
# html_domain_indices = True
|
||||
|
||||
# If false, no index is generated.
|
||||
html_use_index = False
|
||||
|
||||
# If true, the index is split into individual pages for each letter.
|
||||
# html_split_index = False
|
||||
|
||||
# If true, links to the reST sources are added to the pages.
|
||||
# This one is needed for "Report a bug".
|
||||
html_show_sourcelink = False
|
||||
|
||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
||||
# html_show_sphinx = True
|
||||
|
||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
||||
# html_show_copyright = True
|
||||
|
||||
# If true, an OpenSearch description file will be output, and all pages will
|
||||
# contain a <link> tag referring to it. The value of this option must be the
|
||||
# base URL from which the finished HTML is served.
|
||||
# html_use_opensearch = ''
|
||||
|
||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
||||
# html_file_suffix = None
|
||||
|
||||
# Output file base name for HTML help builder.
|
||||
htmlhelp_basename = 'OpenStack-API-Documentation'
|
||||
|
||||
# If true, publish source files
|
||||
html_copy_source = False
|
||||
|
||||
# -- Options for LaTeX output ---------------------------------------------
|
||||
|
||||
latex_elements = {
|
||||
# The paper size ('letterpaper' or 'a4paper').
|
||||
# 'papersize': 'letterpaper',
|
||||
|
||||
# The font size ('10pt', '11pt' or '12pt').
|
||||
# 'pointsize': '10pt',
|
||||
|
||||
# Additional stuff for the LaTeX preamble.
|
||||
# 'preamble': '',
|
||||
}
|
||||
|
||||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
# (source start file, target name, title,
|
||||
# author, documentclass [howto, manual, or own class]).
|
||||
latex_documents = [
|
||||
('index', 'OpenStackAPI.tex', u'OpenStack API Documentation',
|
||||
u'OpenStack Doc Team', 'manual'),
|
||||
]
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top of
|
||||
# the title page.
|
||||
# latex_logo = None
|
||||
|
||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
||||
# not chapters.
|
||||
# latex_use_parts = False
|
||||
|
||||
# If true, show page references after internal links.
|
||||
# latex_show_pagerefs = False
|
||||
|
||||
# If true, show URL addresses after external links.
|
||||
# latex_show_urls = False
|
||||
|
||||
# Documents to append as an appendix to all manuals.
|
||||
# latex_appendices = []
|
||||
|
||||
# If false, no module index is generated.
|
||||
# latex_domain_indices = True
|
||||
|
||||
|
||||
# -- Options for manual page output ---------------------------------------
|
||||
|
||||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('index', 'openstack-api-documentation', u'OpenStack API Documentation',
|
||||
[u'OpenStack Doc Team'], 1)
|
||||
]
|
||||
|
||||
# If true, show URL addresses after external links.
|
||||
# man_show_urls = False
|
||||
|
||||
|
||||
# -- Options for Texinfo output -------------------------------------------
|
||||
|
||||
# Grouping the document tree into Texinfo files. List of tuples
|
||||
# (source start file, target name, title, author,
|
||||
# dir menu entry, description, category)
|
||||
texinfo_documents = [
|
||||
('index', 'openstack-api-documentation', u'OpenStack API Documentation',
|
||||
u'OpenStack Doc Team', 'OpenStackAPIDocs', 'Describes OpenStack API reference and concepts.',
|
||||
'Miscellaneous'),
|
||||
]
|
||||
|
||||
# Documents to append as an appendix to all manuals.
|
||||
# texinfo_appendices = []
|
||||
|
||||
# If false, no module index is generated.
|
||||
# texinfo_domain_indices = True
|
||||
|
||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
||||
# texinfo_show_urls = 'footnote'
|
||||
|
||||
# If true, do not generate a @detailmenu in the "Top" node's menu.
|
||||
# texinfo_no_detailmenu = False
|
||||
|
||||
# Set to True to enable printing of the TODO sections
|
||||
todo_include_todos = False
|
||||
|
||||
# -- Options for Internationalization output ------------------------------
|
||||
locale_dirs = ['locale/']
|
||||
|
||||
# -- Options for PDF output --------------------------------------------------
|
||||
|
||||
pdf_documents = [
|
||||
('index', u'openstack-api-documentation', u'OpenStack API Documentation',
|
||||
u'OpenStack contributors')
|
||||
]
|
@ -1,173 +0,0 @@
|
||||
===========================
|
||||
OpenStack API Documentation
|
||||
===========================
|
||||
|
||||
Use the OpenStack APIs to launch server instances, create images, assign
|
||||
metadata to instances and images, create storage containers and objects, and
|
||||
complete other actions in your OpenStack cloud.
|
||||
|
||||
.. note::
|
||||
The links below are grouped according to the API status that reflects the
|
||||
state of the endpoint on the service.
|
||||
|
||||
* 'Current' indicates a stable version that is up-to-date, recent, and
|
||||
might receive future versions. This endpoint should be prioritized over
|
||||
all others.
|
||||
* 'Supported' is a stable version that is available on the server.
|
||||
However, it is not likely the most recent available and might not be
|
||||
updated or might be deprecated at some time in the future.
|
||||
* 'Deprecated' is a stable version that is still available but is being
|
||||
deprecated and might be removed in the future.
|
||||
* 'Experimental' is not a stable version. This version is under
|
||||
development or contains features that are otherwise subject to change.
|
||||
|
||||
For more information about API status values and version information, see
|
||||
`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__.
|
||||
|
||||
The notation '(microversions)' next to the link to an API reference
|
||||
indicates that the API follows a `pattern established by the Compute
|
||||
service
|
||||
<https://developer.openstack.org/api-guide/compute/microversions.html>`__
|
||||
to enable small, documented changes to the API on a resource-by-resource
|
||||
basis.
|
||||
|
||||
.. _current_api_versions:
|
||||
|
||||
Current API versions
|
||||
--------------------
|
||||
|
||||
`Acceleration API v1 <https://developer.openstack.org/api-ref/accelerator/v1/>`__
|
||||
|
||||
`Application Catalog API v1 <https://developer.openstack.org/api-ref/application-catalog/v1/>`__
|
||||
|
||||
`Application Container Service API <https://developer.openstack.org/api-ref/application-container/>`__ (microversions)
|
||||
|
||||
`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__
|
||||
|
||||
`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ (microversions)
|
||||
|
||||
`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/v3/>`__ (microversions)
|
||||
|
||||
.. note:: The Block Storage API v3 is functionally identical to the
|
||||
Block Storage API v2. Subsequent API v3 microversions, such as v3.1,
|
||||
differ from API v2.
|
||||
|
||||
`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__
|
||||
|
||||
`Compute API <https://developer.openstack.org/api-ref/compute/>`__ (microversions)
|
||||
|
||||
`Container Infrastructure Management API <https://developer.openstack.org/api-ref/container-infrastructure-management/>`__ (microversions)
|
||||
|
||||
`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-processing/>`__
|
||||
|
||||
`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/data-protection-orchestration/>`__
|
||||
|
||||
`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/>`__
|
||||
|
||||
`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/dns/>`__
|
||||
|
||||
`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__
|
||||
|
||||
`Function Engine <https://developer.openstack.org/api-ref/function-engine/>`__
|
||||
|
||||
`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__
|
||||
|
||||
`Identity API v3 extensions <https://developer.openstack.org/api-ref/identity/v3-ext>`__
|
||||
|
||||
`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__
|
||||
|
||||
`Key Manager API v1 <https://docs.openstack.org/barbican/latest/api/>`__
|
||||
|
||||
`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/v2>`__
|
||||
|
||||
`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__
|
||||
|
||||
`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__
|
||||
|
||||
`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-orchestration/v1/>`__
|
||||
|
||||
`Object Storage API v1 <https://developer.openstack.org/api-ref/object-store>`__
|
||||
|
||||
`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/v1/>`__
|
||||
|
||||
`Placement API <https://developer.openstack.org/api-ref/placement/>`__ (microversions)
|
||||
|
||||
`Resource Optimization API v1 <https://developer.openstack.org/api-ref/resource-optimization>`__
|
||||
|
||||
`Search API v1 <https://developer.openstack.org/api-ref/search>`__
|
||||
|
||||
`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-file-system>`__ (microversions)
|
||||
|
||||
.. note:: The Shared File Systems API v1 is functionally identical to the
|
||||
Shared File Systems API v2. Subsequent API v2 microversions, such as v2.1,
|
||||
differ from API v1.
|
||||
|
||||
Supported API versions
|
||||
----------------------
|
||||
|
||||
|
||||
Deprecated API versions
|
||||
-----------------------
|
||||
|
||||
`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/v2/>`__
|
||||
|
||||
.. note:: The Block Storage API v3 is functionally identical to the
|
||||
Block Storage API v2. Subsequent API v3 microversions, such as v3.1,
|
||||
differ from API v2.
|
||||
|
||||
`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/identity/v2-ext>`__
|
||||
|
||||
.. todo: telemetry link
|
||||
|
||||
API quick-start examples
|
||||
------------------------
|
||||
|
||||
With the `TryStack <https://www.openstack.org/software/start>`__ OpenStack
|
||||
installation, these services work together in the background of the
|
||||
installation, and many of these examples work on TryStack.
|
||||
|
||||
After you authenticate through Identity, you can use the other OpenStack
|
||||
APIs to create and manage resources in your OpenStack cloud. You can
|
||||
launch instances from images and assign metadata to instances through
|
||||
the Compute API or the **openstack** command-line client.
|
||||
|
||||
To begin sending API requests, use one of the following methods:
|
||||
|
||||
- **cURL**
|
||||
|
||||
A command-line tool that lets you send HTTP requests and receive
|
||||
responses. See the section called :ref:`openstack_API_quick_guide`.
|
||||
|
||||
- **OpenStack command-line client**
|
||||
|
||||
The OpenStack project provides a command-line client that enables
|
||||
you to access APIs through easy-to-use commands. See the section
|
||||
called :ref:`client-intro`.
|
||||
|
||||
- **REST clients**
|
||||
|
||||
Both Mozilla and Google provide browser-based graphical interfaces
|
||||
for REST. For Firefox, see
|
||||
`RESTClient <https://addons.mozilla.org/en-US/firefox/addon/restclient/>`__.
|
||||
For Chrome, see
|
||||
`rest-client <https://code.google.com/archive/p/rest-client/>`__.
|
||||
|
||||
- **OpenStack Python Software Development Kit (SDK)**
|
||||
|
||||
Use this SDK to write Python automation scripts that create and
|
||||
manage resources in your OpenStack cloud. The SDK implements Python
|
||||
bindings to the OpenStack API, which enables you to perform
|
||||
automation tasks in Python by making calls on Python objects rather
|
||||
than making REST calls directly. All OpenStack command-line tools are
|
||||
implemented by using the Python SDK. See `OpenStack Python
|
||||
SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in the
|
||||
*OpenStack End User Guide*.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
api-quick-start
|
||||
|
||||
|
||||
|
||||
|
@ -1,742 +0,0 @@
|
||||
# Andreas Jaeger <jaegerandi@gmail.com>, 2015. #zanata
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# Robert Simai <robert.simai@suse.com>, 2016. #zanata
|
||||
# Andreas Jaeger <jaegerandi@gmail.com>, 2017. #zanata
|
||||
# Frank Kloeker <eumel@arcor.de>, 2017. #zanata
|
||||
# Robert Simai <robert.simai@suse.com>, 2017. #zanata
|
||||
# Andreas Jaeger <jaegerandi@gmail.com>, 2018. #zanata
|
||||
# Frank Kloeker <eumel@arcor.de>, 2018. #zanata
|
||||
# Reik Keutterling <spielkind@gmail.com>, 2018. #zanata
|
||||
# Robert Simai <robert.simai@suse.com>, 2018. #zanata
|
||||
# Robert Simai <robert.simai@suse.com>, 2019. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-01-11 03:06+0000\n"
|
||||
"Last-Translator: Robert Simai <robert.simai@suse.com>\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: German\n"
|
||||
|
||||
msgid ""
|
||||
"'Current' indicates a stable version that is up-to-date, recent, and might "
|
||||
"receive future versions. This endpoint should be prioritized over all others."
|
||||
msgstr ""
|
||||
"'Current' bezeichnet eine stabile Version, die up-to-date ist und ggf. "
|
||||
"Versionsaktualisierungen erhalten wird. Dieser Endpunkt sollten vor allen "
|
||||
"anderen bevorzugt werden."
|
||||
|
||||
msgid ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
msgstr ""
|
||||
"'Deprecated' ist eine stabile Version, die noch verfügbar aber veraltet ist "
|
||||
"und eventuell in Zukunft entfernt wird."
|
||||
|
||||
msgid ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
msgstr ""
|
||||
"'Experimental' ist keine stabile Version. Diese Version ist in Entwicklung "
|
||||
"oder enthält Eigenschaften die sich noch ändern können."
|
||||
|
||||
msgid ""
|
||||
"'Supported' is a stable version that is available on the server. However, it "
|
||||
"is not likely the most recent available and might not be updated or might be "
|
||||
"deprecated at some time in the future."
|
||||
msgstr ""
|
||||
"'Supported' ist eine stabile Version, die auf dem Server verfügbar ist. Sie "
|
||||
"ist aber wahrscheinlich nicht die neueste verfügbare Version und wird "
|
||||
"vielleicht nicht aktualisiert oder wird in Zukunft als deprecated erklärt."
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Software Development Kit (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack Kommandozeilenclients**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST Clients**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Project Domain* (optional)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Project ID* (optional)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Project Name* (optional)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*User Domain* (erforderlich)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"Ein Kommandozeilenwerkzeug, dass Sie HTTP-Anfragen senden lässt und "
|
||||
"Antworten empfängt. Lesen Sie die Sektion :ref:`openstack_API_quick_guide`."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API Schnellstart Beispiele"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Nach dem Sie sich über Identität authentifiziert haben können Sie die "
|
||||
"anderen OpenStack APIs verwenden, um Resourcen in Ihrer OpenStack Cloud zu "
|
||||
"erstellen und zu verwalten. Sie können Instanzen von Images starten und "
|
||||
"Metadaten, durch die Compute API oder den **openstack** "
|
||||
"Kommandozeilenclient, Ihren Instanzen zuweisen."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Authentifizieren"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Authentifizierung und Ablauf der API Anfragen"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"Bevor Sie Kommandos mit dem Client verwenden können müssen Sie die "
|
||||
"``openrc`` Datei downloaden und einsourcen um die Umgebungsvariablen zu "
|
||||
"setzen."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Anmeldeinformationen sind in der Regel eine Kombination aus Ihrem "
|
||||
"Benutzernamen und Passwort, und optional der Name oder die ID des Projekts "
|
||||
"Ihrer Cloud. Fragen Sie Ihren Cloud-Administrator nach Ihrem Benutzernamen, "
|
||||
"Passwort und Projekt, damit Sie Authentifizierungs-Token generieren können. "
|
||||
"Alternativ können Sie ein Token und nicht einen Benutzernamen und ein "
|
||||
"Passwort eingeben."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Aktuelle API-Versionen"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Veraltete API-Versionen"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Exportieren Sie $OS_PROJECT_ID aus dem Token-Aufruf und verwenden Sie dann "
|
||||
"das Compute API zum auflisten der Abbilder:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Exportieren Sie $OS_PROJECT_ID aus dem Token-Aufruf und verwenden Sie dann "
|
||||
"das Compute API zum auflisten der Server:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr ""
|
||||
"Exportieren des Projektnamens mit Umgebungsvariable ``OS_PROJECT_NAME`` . "
|
||||
"Zum Beispiel:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr ""
|
||||
"Exportieren Sie die Token ID in die ``OS_TOKEN`` Umgebungsvariable. Zum "
|
||||
"Beispiel:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"Als Erstes, exportieren Ihres Projektnamens mit der Umgebungsvariable "
|
||||
"``OS_PROJECT_NAME``, Ihres Projektdomänennamen mit der Umgebungsvariable "
|
||||
"``OS_PROJECT_DOMAIN_NAME``, Ihren Benutzernamen mit der Umgebungsvariable "
|
||||
"``OS_USERNAME``, Ihr Passwort mit der Umgebungsvariable ``OS_PASSWORD`` und "
|
||||
"Ihren Benutzerdomänennamen mit der Umgebungsvariable ``OS_USER_DOMAIN_NAME``."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Vollständige Informationen zu den OpenStack Clients, einschließlich der "
|
||||
"Verwendung der ``openrc`` Datei, finden Sie im `OpenStack End User Guide "
|
||||
"<https://docs.openstack.org/user-guide/>`__, `OpenStack Administrator Guide "
|
||||
"<https://docs.openstack.org/admin-guide/>`__, und der `OpenStack Command-"
|
||||
"Line Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "Als Beispiel, installieren des ``openstack`` Clients:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Für Informationen über die Kommandozeilen-Clients, siehe `OpenStack "
|
||||
"Kommandozeilenschnitstelle Referenz <https://docs.openstack.org/cli-"
|
||||
"reference/>`__."
|
||||
|
||||
msgid ""
|
||||
"For information about the default ports that the OpenStack components use, "
|
||||
"see `Firewalls and default ports <https://docs.openstack.org/install-guide/"
|
||||
"firewalls-default-ports.html>`_ in the *OpenStack Installation Guide*."
|
||||
msgstr ""
|
||||
"Informationen zu den von den OpenStack Komponenten verwendeten Standardports "
|
||||
"finden Sie unter `Firewalls und Standardports <https://docs.openstack.org/"
|
||||
"install-guide/firewalls-default-ports.html>`_ in der *OpenStack "
|
||||
"Installationsanleitung*."
|
||||
|
||||
msgid ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
msgstr ""
|
||||
"Weitere Informationen zu den API Status Werten und Versionsinformationen "
|
||||
"finden Sie unter `Version Discovery <https://wiki.openstack.org/wiki/"
|
||||
"VersionDiscovery>`__."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"Für Scripting und einfachere Anfragen können Sie einen Kommandozeilenclient, "
|
||||
"wie z.B. den ``openstack-client``, verwenden. Dieser Client gibt Ihnen die "
|
||||
"Möglichkeit, die Dienst Identity, Compute, Block Storage und Objekt Storage "
|
||||
"über deren API mittels Kommandozeileninterface zu bedienen. Jedes OpenStack "
|
||||
"Projekt besitzt einen dazugehöriges Client Projekt, dass Python API Bindings "
|
||||
"und ein Kommandozeileninterface (CLI) beinhaltet."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr ""
|
||||
"Wenn der 401 Unauthorized Fehler auftritt, fordern sie einen neuen Token an."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"War die Anfrage erfolgreich, wird ``Created (201)`` zurückgegeben zusammen "
|
||||
"mit dem Token als Wert im ``X-Subject-Token`` Rückgabe-Kopf. Der Kopf ist "
|
||||
"gefolgt von einem Rückgabekörper, welches ein Objekt mit dem Typ ``token`` "
|
||||
"enthält, welches ein Ablaufdatum in der Form``\"expires_at\":\"datetime\"`` "
|
||||
"zusammen mit anderen Attributen besitzt."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"In einer typischen OpenStack-Installation mit Identity können Sie Ihren "
|
||||
"Projektnamen, Benutzernamen und Passwort zum Authentifizieren angeben."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"In der vorigen Anfrage wird die Abfrage ``nocatalog`` benutzt, weil sie nur "
|
||||
"den Token und nicht den ganzen Dienstekatalog (sofern für den Benutzer "
|
||||
"verfügbar) ausgegeben haben wollen. Wenn der Benutzer den ganzen "
|
||||
"Dienstekatalog erhalten will, muss die Abfrage am Ende der URL weggelassen "
|
||||
"werden."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Installieren oder Aktualisieren eines Client-Paketes:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "Installiere die Clients"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Starten Sie eine Instanz"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API Dokumentation"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack APIs"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack Kommandozeilenclients"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parameter"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"Fragen Sie einen Authentifizierungstoken vom Identitätsendpunkt an, welcher "
|
||||
"Ihnen von Ihrem Cloud Administrator geben wurde. Senden Sie den "
|
||||
"Berechtigungsnachweis bei der Anfrage mit wie in :ref:`authenticate` "
|
||||
"beschrieben. Wenn die Anfrage erfolgreich ist, erhalten Sie ein "
|
||||
"Authentifizierungstoken."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "API Anfragen senden"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"Senden Sie API Anfragen und fügen Sie das Token im ``X-Auth-Token`` Header "
|
||||
"ein. Fahren Sie fort API Anfragen mit diesem Token zu senden, bis die "
|
||||
"Aufgabe erledigt ist oder ein 401 Unauthorized Fehler auftritt."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Unterstützte API Versionen"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"Das Block Storage API v3 ist funktionell identisch mit der Block Storage API "
|
||||
"v2. Nachfolgende API v3 Mikroversionen, wie z.B. v3.1, unterscheiden sich "
|
||||
"vom API v2."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr ""
|
||||
"Die Domäne des Projekts. Dies ist ein erforderlicher Teil des Objektbereichs."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "Die Domäne des Benutzers."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"Das OpenStack Project bietet einen Kommandozeilen-Client, der Ihnen durch "
|
||||
"einfach zu verwendende Kommando Zugriff zu APIs gewährt. Lesen Sie :ref:"
|
||||
"`client-intro`."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"Die Shared File Systems API v1 ist funktionell identisch mit der Shared File "
|
||||
"Systems API v2. Nachfolgende API v2 Mikroversionen, wie z.B. v2.1, "
|
||||
"unterscheiden sich vom API v1."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"Das Beispiel unten benutzt einen Endpunkt beschrieben im "
|
||||
"Installationshandbuch aus der Ocata-Installation. Sie können auch immer ``"
|
||||
"$OS_AUTH_URL`` als Umgebungsvariable benutzen."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"Die Beispiele in diesem Abschnitt verwenden cURL Kommandos. Für "
|
||||
"Informationen über cURL, siehe http://curl.haxx.se/. Für Informationen über "
|
||||
"die OpenStack APIs, siehe :ref:`current_api_versions`."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "Das folgenden Beispiel zeigt eine erfolgreiche Antwort:"
|
||||
|
||||
msgid ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
msgstr ""
|
||||
"Die Links weiter unten sind gruppiert entsprechend dem API-Status welcher "
|
||||
"den Status des Endpunktes des Services beschreibt."
|
||||
|
||||
msgid ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ to "
|
||||
"enable small, documented changes to the API on a resource-by-resource basis."
|
||||
msgstr ""
|
||||
"Die Bezeichung '(microversions)' neben einer API Referenz zeigt an, dass das "
|
||||
"API einem `vom Compute Dienst eingeführten Muster folgt <https://developer."
|
||||
"openstack.org/api-guide/compute/microversions.html>`__ um kleinere, "
|
||||
"dokumentierte Änderungen an dem API auf einer Ressourcen-Basis zu "
|
||||
"ermöglichen."
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "Das Passwort des Benutzers."
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr ""
|
||||
"Der Berechtigungsnachweis als Nutzdaten für die Authentifzierung hat "
|
||||
"folgende Parameter: "
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"Die Projekt-ID. Sowohl die * Projekt-ID * als auch * Project Name * sind "
|
||||
"optional. Aber einer von ihnen ist zusammen mit der *Project Domain* "
|
||||
"erforderlich. Sie werden unter einem Objektbereich verpackt. Wenn Sie den "
|
||||
"Projektnamen oder die ID nicht kennen, senden Sie eine Anfrage ohne "
|
||||
"Objektbereich."
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr "Der Projektname. *Project ID* und *Project Name* sind beides optional."
|
||||
|
||||
msgid ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
msgstr ""
|
||||
"Das Token läuft jede Stunden ab, sofern nicht anders konfiguriert. Siehe die "
|
||||
"`expiration <https://docs.openstack.org/keystone/latest/configuration/config-"
|
||||
"options.html#token.expiration>`__ Option im *Identity Service Configuration "
|
||||
"Guide*."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"Der Benutzername. Wenn Sie keinen Benutzernamen und Passwort angeben, müssen "
|
||||
"Sie ein Token verwenden."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr ""
|
||||
"Als nächstes starten Sie dieses cURL Kommando, um einen Token anzufordern:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"Verwenden Sie dann das Compute API zum Auflisten der Varianten. Ersetzen Sie "
|
||||
"den Compute API Endpunkt mit einem der unten stehenden, der Ihr Projekt "
|
||||
"beinhaltet:"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"Diese Sektion zeigt wie man einfache Compute API Aufrufe tätigt. Für die "
|
||||
"komplette Liste der Compute API Aufrufe lesen Sie `Compute API <https://"
|
||||
"developer.openstack.org/api-ref/compute/>`__."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"Um für den Zugriff auf OpenStack Dienste zu Authentifizieren und ein Token "
|
||||
"zu erhalten, müssen Sie zuerst eine Authentifizierungsanfrage mit den "
|
||||
"Berechtigungsdaten an den OpenStack Identitätsdienst stellen."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr ""
|
||||
"Um mit dem Senden von API Anfragen zu beginnen, benutzen Sie eine der "
|
||||
"folgenden Methoden:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr ""
|
||||
"Um eine Instanz zu starten, notieren Sie sich die IDs des gewünschten "
|
||||
"Abbildes und der Variante."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"Um eine Instanz zu starten müssen Sie einen Namen, ein Abbild und eine "
|
||||
"Variante für Ihre Instanz auswählen."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"Um die ``my_instance`` Instanz zu starten, geben Sie das ``openstack server "
|
||||
"create`` Kommando mit Abbild und Varianten ID sowie dem Servernamen ein:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"Zum Auflisten aller verfügbaren Abbilder rufen Sie das Compute API mittels "
|
||||
"``openstack`` Client auf:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr ""
|
||||
"Führen Sie folgendes Kommando aus um eine Liste der Varianten anzuzeigen:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr ""
|
||||
"Um den ``openstack`` Client zu entfernen, führen Sie dieses Kommando aus:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr ""
|
||||
"Um den ``openstack`` Client zu aktualisieren, führen Sie dieses Kommando aus:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"Verwenden Sie das OpenStack API zum Starten von Instanzen, Erzeugen von "
|
||||
"Abbildern, Zuweisen von Metadaten zu Instanzen und Abbildern, Erzeugen von "
|
||||
"Storage Containern und Objekten sowie weiteren Aktionen in Ihrer OpenStack "
|
||||
"Cloud."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"Benutzen Sie dieses SDK um Python Skripte zu schreiben, welche Resourcen in "
|
||||
"Ihrer OpenStack Cloud erzeugen und managen. Das SDK implementiert Python "
|
||||
"Bindings zur OpenStack API, die Ihnen erlauben automatische Tasks in Python "
|
||||
"auf Python Objekten auszuführen anstelle REST Calls direkt aufzurufen. Alle "
|
||||
"OpenStack Kommandozeilentools benutzen das Python SDK in ihrer "
|
||||
"Implementierung. Siehe auch das `OpenStack Python SDK <https://docs."
|
||||
"openstack.org/user-guide/sdk.html>`__ in dem *OpenStack End User Guide*."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"Wenn Sie eine API Anfrage senden, beinhaltet diese den Token im ``X-Auth-"
|
||||
"Token`` Header. Wenn Sie auf mehrere OpenStack Dienste zugreifen, müssen Sie "
|
||||
"einen Token für jeden Dienst haben. Ein Token ist nur für eine begrenzte "
|
||||
"Zeit gültig, bis dieser abläuft. Ein Token kann auch aus anderen Gründen "
|
||||
"ungültig werden. Zum Beispiel werden vorhandene Token eines Benutzers "
|
||||
"ungültig, wenn sich die Rollen des Benutzers verändern."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "*PROJEKT* ist der Projektname."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"Sie müssen den jeweiligen Client für das Projekt getrennt installieren, aber "
|
||||
"der ``python-openstackclient`` deckt mehrere Projekte ab."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastruktur Management API <https://developer.openstack.org/api-"
|
||||
"ref/container-infrastructure-management/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Datenbankdienst API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identität API v2.0 Erweiterungen <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identität API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identität API v3 Erweiterungen <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Abbilddienst API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Netzwerk API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Objekt Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestrierung API v1 <https://developer.openstack.org/api-ref/"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
msgstr ""
|
||||
"`Ressourcen-Optimierungs-API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Suche API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "Passwort (erforderlich)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "Zeichenkette"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "Benutzername (erforderlich)"
|
@ -1,708 +0,0 @@
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# Andi Chandler <andi@gowling.com>, 2016. #zanata
|
||||
# Andi Chandler <andi@gowling.com>, 2017. #zanata
|
||||
# Andi Chandler <andi@gowling.com>, 2018. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-09-15 09:26+0000\n"
|
||||
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: English (United Kingdom)\n"
|
||||
|
||||
msgid ""
|
||||
"'Current' indicates a stable version that is up-to-date, recent, and might "
|
||||
"receive future versions. This endpoint should be prioritized over all others."
|
||||
msgstr ""
|
||||
"'Current' indicates a stable version that is up-to-date, recent, and might "
|
||||
"receive future versions. This endpoint should be prioritised over all others."
|
||||
|
||||
msgid ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
msgstr ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
|
||||
msgid ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
msgstr ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
|
||||
msgid ""
|
||||
"'Supported' is a stable version that is available on the server. However, it "
|
||||
"is not likely the most recent available and might not be updated or might be "
|
||||
"deprecated at some time in the future."
|
||||
msgstr ""
|
||||
"'Supported' is a stable version that is available on the server. However, it "
|
||||
"is not likely the most recent available and might not be updated or might be "
|
||||
"deprecated at some time in the future."
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Software Development Kit (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack command-line client**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST clients**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Project Domain* (optional)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Project ID* (optional)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Project Name* (optional)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*User Domain* (required)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API quick-start examples"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Authenticate"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Authentication and API request workflow"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Current API versions"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Deprecated API versions"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "For example, install the ``openstack`` client:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid ""
|
||||
"For information about the default ports that the OpenStack components use, "
|
||||
"see `Firewalls and default ports <https://docs.openstack.org/install-guide/"
|
||||
"firewalls-default-ports.html>`_ in the *OpenStack Installation Guide*."
|
||||
msgstr ""
|
||||
"For information about the default ports that the OpenStack components use, "
|
||||
"see `Firewalls and default ports <https://docs.openstack.org/install-guide/"
|
||||
"firewalls-default-ports.html>`_ in the *OpenStack Installation Guide*."
|
||||
|
||||
msgid ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
msgstr ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "If the Unauthorised (401) error occurs, request another token."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalogue (if it is "
|
||||
"available for the user) cluttering the output. If a user wants to get the "
|
||||
"service catalogue, this query string need not be appended to the URL."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Install or update a client package:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "Install the clients"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Launch an instance"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API Documentation"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack APIs"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack command-line clients"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parameter"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "Send API requests"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorised (401) error occurs."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Supported API versions"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr ""
|
||||
"The Domain of the project. This is a required part of the scope object."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "The Domain of the user."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "The following example shows a successful response:"
|
||||
|
||||
msgid ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
msgstr ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
|
||||
msgid ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ to "
|
||||
"enable small, documented changes to the API on a resource-by-resource basis."
|
||||
msgstr ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ to "
|
||||
"enable small, documented changes to the API on a resource-by-resource basis."
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "The password for the user."
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr "The payload of credentials to authenticate contains these parameters:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
|
||||
msgid ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
msgstr ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "Then, run this cURL command to request a token:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"Then, use the Compute API to list flavours, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr "To begin sending API requests, use one of the following methods:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr "To launch an instance, note the IDs of your desired image and flavour."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"To launch instances, you must choose a name, an image, and a flavour for "
|
||||
"your instance."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavour IDs and the server name:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "To list flavours, run this command:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "To remove the ``openstack`` client, run this command:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "To update the ``openstack`` client, run this command:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "Where *PROJECT* is the project name."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Application Catalogue API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
msgstr ""
|
||||
"`Resource Optimisation API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "password (required)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "string"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "username (required)"
|
@ -1,699 +0,0 @@
|
||||
# Georg Hennemann <georg.hennemann@t-systems.com>, 2017. #zanata
|
||||
# Andreas Jaeger <jaegerandi@gmail.com>, 2018. #zanata
|
||||
# Georg Hennemann <georg.hennemann@t-systems.com>, 2018. #zanata
|
||||
# Georg Hennemann <georg.hennemann@t-systems.com>, 2019. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-02-03 08:16+0000\n"
|
||||
"Last-Translator: Georg Hennemann <georg.hennemann@t-systems.com>\n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"Language: eo\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
|
||||
msgid ""
|
||||
"'Current' indicates a stable version that is up-to-date, recent, and might "
|
||||
"receive future versions. This endpoint should be prioritized over all others."
|
||||
msgstr ""
|
||||
"'Nuna' indikas stabilan version kiu estas ĝisdatigita, lastatempe, kaj eble "
|
||||
"ricevas estontajn versiojn. Ĉi tiu finpunkto devas esti prioritita super "
|
||||
"ĉiuj aliaj."
|
||||
|
||||
msgid ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
msgstr ""
|
||||
"'Evitinda' estas stabila versio kiu ankoraŭ estas havebla sed estas evitinda "
|
||||
"kaj povus esti forigita en la estonteco."
|
||||
|
||||
msgid ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
msgstr ""
|
||||
"'Eksperimenta' ne estas stabila versio. Ĉi tiu versio estas evoluanta aŭ "
|
||||
"enhavas trajtojn, kiuj alie ŝanĝos."
|
||||
|
||||
msgid ""
|
||||
"'Supported' is a stable version that is available on the server. However, it "
|
||||
"is not likely the most recent available and might not be updated or might be "
|
||||
"deprecated at some time in the future."
|
||||
msgstr ""
|
||||
"'Subtenita' estas stabila versio kiu estas disponebla sur la servilo. Tamen, "
|
||||
"ĝi verŝajne ne estas la plej lastatempa havebla kaj eble ĝi ne estas "
|
||||
"ĝisdatigita aŭ povus esti ekskludita iamtempe en la estonteco."
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Software Development Kit (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack command-line client**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST klientoj**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Projekto Domajno* (nedeviga)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Projekto ID* (nedeviga)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Projekto Nomo* (nedeviga)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*Uzanto Domajno* (nepras)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"Komandlinia ilo ebligas sendi HTTP-petojn kaj ricevi respondojn. Vidu la "
|
||||
"sekcion nomita: ref: `openstack_API_quick_guide`."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API rapid-komencaj ekzemploj"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Post kiam vi aŭtentigas tra Identeco, vi povas uzi la aliajn OpenStack-"
|
||||
"APIojn por krei kaj administri rimedojn en via OpenStack-nubo. Vi povas "
|
||||
"prezenti ekzemplojn de bildoj kaj asigni metadatojn al aperojn per la "
|
||||
"Komputila API aŭ la **openstack** komandlinia kliento."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Aŭtentigu"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Aŭtentigo kaj API peto laborfluo"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"Antaŭ ol vi povas elsendi klientajn komandojn, vi devas elŝuti kaj fonti la "
|
||||
"`` openrc``-dosieron por agordi mediajn variablojn."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Legitimaĵojn estas normale kombinado de via uzanto nomo kaj pasvorto, kaj "
|
||||
"opcie, la nomo aŭ ID-o de la projekto de via nubo. Demandu vian nubo "
|
||||
"administranton por via uzanto nomo, pasvorto, kaj projekto por tio ke vi "
|
||||
"povas generi aŭtentigajn ĵetonojn. Alternative, vi povas enigi ĵetonon "
|
||||
"anstataŭ uzanto nomo kaj pasvorto."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Aktualaj API versioj"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Evitindaj API-versioj"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Priskribo"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Eksportu la $OS_PROJECT_ID de la ĵeton-voko, kaj tiam uzu la Komputila API "
|
||||
"por listigi bildojn:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Eksportu la $OS_PROJECT_ID de la ĵeton-voko, kaj tiam uzu la Komputila API "
|
||||
"por listigi servilojn:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr ""
|
||||
"Eksportu la projekto nomon al la ``OS_PROJECT_NAME`` medio variablo. "
|
||||
"Ekzemple:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "Eksportu la ĵetono ID-on al la ``OS_TOKEN`` medio variablo. Ekzemple:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"Unue, eksportu vian projekto nomon al la ``OS_PROJECT_NAME`` medio "
|
||||
"variablo, vian projekto domajnon al la ``OS_PROJECT_DOMAIN_NAME`` medio "
|
||||
"variablo, vian uzanto nomon al la ``OS_USERNAME`` medio variablo, vian "
|
||||
"pasvorton al la ``OS_PASSWORD`` medio variablo kaj vian uzanto domajno nomon "
|
||||
"al ``OS_USER_DOMAIN_NAME`` medio variablo."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Por kompleta informo pri la OpenStack-klientoj, inkluzive kiel fonti la "
|
||||
"``openrc`` dosiero, vidu `OpenStack End User Guide <https://docs.openstack."
|
||||
"org/user-guide/>`__, `OpenStack Administrator Guide <https://docs.openstack."
|
||||
"org/admin-guide/>`__, kaj `OpenStack Command-Line Interface Reference "
|
||||
"<https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "Ekzemple, instalu la ``openstack`` klienton:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Por informoj pri la komand-linia kliento, vidu `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
msgstr ""
|
||||
"Por pliaj informoj pri API-statusaj valoroj kaj versiaj informoj, vidu "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"Por skriptado kaj facilaj petoj, vi povas uzi la komando-linio kliento kiel "
|
||||
"la ``openstack-client`` kliento. Tiu kliento vin ebligas uzi Identeco, "
|
||||
"Komputo, Bloko Memorilo, kaj Objekto Memorilo API-ojn per komand-linia "
|
||||
"interfaco. Ankaŭ, ĉiu OpenStack projekto havas rilatan kliento projekton kiu "
|
||||
"inkludas Python API bindaĵojn kaj komand-linian interfacon (CLI). "
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "Se la Ne-rajtigita (401) eraro okazas, petu alian ĵetonon."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"Se la peto sukcesas, ĝi liveras la ``Created (201)`` respondo kodon kune kun "
|
||||
"la ĵetono kiel valoro en la ``X-Subject-Token`` respondo mesaĝokapo. La "
|
||||
"mesaĝokapo estas sekvita de respondo korpo kiu havas objekton de la tipo "
|
||||
"``token`` kiu havas la ĵeto-malvalidiĝan daton kaj tempon en la formo ``"
|
||||
"\"expires_at\":\"datetime\"`` kune kun aliaj atributoj."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"En tipa OpenStack disponigo kiu havas Identecon, vi povas difini vian "
|
||||
"projektnomon, uzanto nomon kaj pasvortajn legitimaĵojn por aŭtentigi."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"En la supra peto, la demandoĉeno ``nocatalog`` estas uzita ĉar vi nur volas "
|
||||
"ricevi ĵetonon kaj ne volas la servo katalogon (se disponebla por la uzanto) "
|
||||
"senordigi la eligon. Se uzanto volas ricevi servo katalogon, ne bezonas "
|
||||
"aldoni tiun demandoĉenon al la URL."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Instalu aŭ ĝisdatigu kliento pakon:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "Instalu la klientojn"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Lanĉu aperon"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API-Dokumentado"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack API-oj"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack komand-liniaj klientoj"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parametro"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"Petu aŭtentigan ĵetonon de la Identeco finpunkto kiun via nubo administranto "
|
||||
"donis al vi. Sendu uzodatumon de la legitimaĵojn en la peto kiel videbla en :"
|
||||
"ref:`authenticate`. Se la peto havas sukceson, la servilo redonas aŭtentigan "
|
||||
"ĵetonon."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "Sendu API petojn"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"Sendu API petojn kaj inkluzivu la ĵetonon en la ``X-Auth-Token`` mesaĝokapo. "
|
||||
"Daŭrigi sendi API petojn kun la ĵetono ĝis la servo kompletiĝas la peton aŭ "
|
||||
"la Ne-rajtigita (401) eraro okazas."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Subtenitaj API-versioj"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"La Bloko-stokado API v3 estas funkcie identa al la Bloko-Stokado API v2. "
|
||||
"Sekvaj API-v3-mikroversioj, kiel v3.1, diferencas de API v2."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr ""
|
||||
"La domajno de la projekto. Tiu estas nepra parto de la amplekso-objekto."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "La Domajno de la uzanto."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"La projekto OpenStack provizas komandlinajn klienton kiu ebligas vin aliri "
|
||||
"la APIojn per facilaj komandoj. Vidu la sekcion nomita: ref: 'client-intro`."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"La Opuzaj dosieroj API v1 estas funkcie identa al la La Opuzaj dosieroj API "
|
||||
"v2. Sekvaj API v2-mikroversioj, kiel v2.1, diferencas de API v1."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"La ekzemplo suben uzas finpunkton de Ocata instalo sekvanta la instalan "
|
||||
"gvidilon. Sed, via ankaŭ povas uzi ``$OS_AUTH_URL`` kiel medio variablo "
|
||||
"bezonita por ŝangi la URL-on."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"La ekzemploj en tiu sekcio uzas cURL komandojn. Por informo pri cURL, vidu "
|
||||
"http://curl.haxx.se/. Por informo pri OpenStack API-oj, vidu :ref:"
|
||||
"`current_api_versions`."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "La sekvanta ekzemplo vidigas sukcesan respondon:"
|
||||
|
||||
msgid ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
msgstr ""
|
||||
"La ligiloj sube estas grupigitaj laŭ la API-statuso, kiu reflektas la staton "
|
||||
"de la finpunkto sur la servo."
|
||||
|
||||
msgid ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ to "
|
||||
"enable small, documented changes to the API on a resource-by-resource basis."
|
||||
msgstr ""
|
||||
"La notacio '(mikroversioj') apud la ligo al API-referenco indikas, ke la API "
|
||||
"sekvas `ŝablonon establita de la Komputila servo <https://developer."
|
||||
"openstack.org/api-guide/compute/microversions.html>` __ por ebligi "
|
||||
"malgrandajn, dokumentitajn ŝanĝojn al la API en rimedo-per-rimedo bazo."
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "La pasvorto por la uzanto."
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr ""
|
||||
"La uzodatumo de la legitimaĵoj por aŭtentigi enhavas tiujn parametrojn:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"La projekto ID. Ambaŭ la *projekto ID* kaj *Projekto Nomo* estas nedevigaj. "
|
||||
"Sed unu de ili nepras kun la *Projekto Domajno*. Ili estas envolvitaj sub "
|
||||
"amplekso objekto. Se via ne scias la projekto nomon aŭ ID, sendu peton sen "
|
||||
"amplekso objekto. "
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr ""
|
||||
"La projekto nomo. Ambaŭ la *Projekto ID* kaj *Projekto Nomo* estas nedevigaj."
|
||||
|
||||
msgid ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
msgstr ""
|
||||
"La ĵetono malvalidiĝas ĉiu horo defaŭlte, kvankam eblas agordi alimaniere - "
|
||||
"vidu la ``expiration`` opcion en la ``Description of token configuration "
|
||||
"options`` sekcion de la `Identity Service Configuration <https://docs."
|
||||
"openstack.org/newton/config-reference/identity/options.html#keystone-"
|
||||
"token>`__ pago."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"La uzanto nomo. Se vi ne provizas uzanto nomon kaj pasvorton, vi devas "
|
||||
"provizi ĵetonon."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "Tiam, lanĉu ĉi tiun cURL komandon por peti ĵetonon:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"Tiam, uzu la Komputila API por listigi variaĵojn, anstataŭigi la Komputila "
|
||||
"API finpunkto kun alia enhavante vian projekto ID-on suben: "
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"Tiu sekcio vidigas kiel fari iujn bazajn komputilan API vokojn. Por kompleta "
|
||||
"listo de Komputilaj API vokoj, vidu `Compute API <https://developer."
|
||||
"openstack.org/api-ref/compute/>`__."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"Por aŭtentigi aliron al OpenStack servojn, vi unue devas eldoni aŭtentigan "
|
||||
"peton kun uzodatumo de legitimaĵojn al Openstack Identeco por recevi "
|
||||
"aŭtentigan ĵetonon."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr "Por komenci sendi API-petojn, uzu unu el la sekvaj metodoj:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr "Por lanĉi aperon, notu la ID-ojn de via dezirata bildo kaj variaĵo."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"Por lanĉi aperojn, vi devas elekti nomon, bildon, kaj variaĵon de via apero. "
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"Por lanĉi la ``my_instance`` aperon, kuru la``openstack server create`` "
|
||||
"komando kun la bildo kaj variaĵo IDs kaj la servilo nomo:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"Por listigi haveblajn bildojn, voku la Komputilan API tra la `` openstack`` "
|
||||
"kliento:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "Por listigi variaĵojn, kuru ĉi tiun komandon:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "Por forigi la ``openstack`` klienton, elsendu tion komandon"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "Por ĝisdatigi la ``openstack`` klienton, elsendu tion komandon"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"Uzu la OpenStack API por lanĉi servilajn instancojn, krei bildojn, asigni "
|
||||
"metadatojn al aperoj kaj bildoj, krei memorilajn kontenerojn kaj objektojn, "
|
||||
"kaj kompletigi aliajn agojn en via OpenStack-nubo."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"Uzu ĉi tiun SDK por skribi Python aŭtomatajn skriptojn, kiuj kreas kaj "
|
||||
"administras rimedojn en via OpenStack-nubo. La SDK realigas Python ligojn al "
|
||||
"la OpenStack API, kiu ebligas vin fari taskojn de aŭtomatigo en Python per "
|
||||
"alvokoj al Python objektoj prefere ol fari REST vokojn rekte. Ĉiuj OpenStack "
|
||||
"komandliniaj iloj estas efektivigitaj per la Python SDK. Vidu 'OpenStack "
|
||||
"Python SDK <https://docs.openstack.org/user-guide/sdk.html> `__ en la "
|
||||
"*OpenStack End User Guide*."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"Se vi sendas API petojn, vi inkluzivas ĵetonon en la ``X-Auth-Token`` "
|
||||
"mesaĝokapo . Se vi aliras diversajn OpenStack servojn, vi devas ricevi "
|
||||
"ĵetonon po ĉiu servo. Ĵetonon validas por limigita tempo antaŭ ol ĝi "
|
||||
"eksvalidiĝos. Ĵetonon ankaŭ malvalidiĝas pro aliaj kialoj. Ekzemple, se la "
|
||||
"roloj por uzanto ŝanĝigas, ekzistantaj ĵetonoj por tiu uzanto ne pli validas."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "Kie *PROJECT* estas la projekto nomo."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"Vi devas instali la kliento por ĉiu projekto aparta, sed la ``python-"
|
||||
"openstackclient`` kovras pluropajn projektojn."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Aplika Katalogo API v1 <https://developer.openstack.org/api-ref/application-"
|
||||
"catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Aplika Kontenero Servo API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr ""
|
||||
"`Savkopio API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Aparata API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Bloko stokado API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Blok-stokada API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr "`Areta API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Komputa API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Kontenero Infrastrukturo Mastruma API <https://developer.openstack.org/api-"
|
||||
"ref/container-infrastructure-management/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Datuma Procezado v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Datumo Protekto Orkestrado v1 <https://developer.openstack.org/api-ref/data-"
|
||||
"protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Datumbazo Servo API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domajno Nomo Servilo(DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Servo <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identeco API v2.0 etendaĵoj <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identeco API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identeco API v3 etendaĵoj <https://developer.openstack.org/api-ref/identity/"
|
||||
"v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Bildo servo API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Ŝarĝodistribuilo API v2 <https://developer.openstack.org/api-ref/load-"
|
||||
"balancer/v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Mesaĝado API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orkestrado API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Retkonektado API v2.0 <https://developer.openstack.org/api-ref/network/"
|
||||
"v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Objekto Stokado API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orkestrado API v1 <https://developer.openstack.org/api-ref/orchestration/v1/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Lokado API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
msgstr ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Serĉo API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Opuzaj dosieroj API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "pasvorto (nepras)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "ĉeno"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "uzantonomo (nepras)"
|
@ -1,482 +0,0 @@
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# Jori Kuusinen <jori.kuusinen@gmail.com>, 2018. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-09-20 03:03+0000\n"
|
||||
"Last-Translator: Jori Kuusinen <jori.kuusinen@gmail.com>\n"
|
||||
"Language: fi_FI\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Finnish (Finland)\n"
|
||||
|
||||
msgid ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
msgstr ""
|
||||
"'Vanhentunut' on vakaa versio joka on vielä saatavilla mutta on vanhentunut "
|
||||
"ja joka saatetaan poistaa tulevaisuudessa."
|
||||
|
||||
msgid ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
msgstr ""
|
||||
"'Kokeellinen' ei ole vakaa versio. Tätä versiota kehitetään parhaillaan tai "
|
||||
"sisältää ominaisuuksia jotka tulevat muuttumaan."
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Ohjelmistokehityspakkaus (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack komentoriviasiakas**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST asiakkaat**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Project Domain* (valinnainen)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Project ID* (valinnainen)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Project Name* (valinnainen)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*User Domain* (pakollinen)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"Komentorivityökalu jolla voit lähettää HTTP-pyyntöjä ja vastaanottaa "
|
||||
"vastauksia. Katso osasta nimeltä :ref:`openstack_API_quick_guide`."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API pika-aloitus esimerkkejä"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Kun olet tunnistautunut Identityn kautta, voit käyttää muita OpenStack API-"
|
||||
"rajapintoja luodaksesi ja hoitaaksesi resursseja OpenStack pilvessä. Voit "
|
||||
"käynnistää instansseja näköistiedostoista ja määrätä metatietoja "
|
||||
"instansseille Compute API:n kautta tai **openstack** komentoriviltä."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Todennus"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Todennus ja API-pyynnön työnkulku"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"Ennen kuin voit suorittaa asiakaskomentoja tulee sinun ladata ja lähteistää "
|
||||
"``openrc``tiedosto asettaaksesi muuttujat käyttöympäristöösi."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Pääsytiedot ovat tyypillisesti yhdistelmästä käyttäjänimi ja salasana, sekä "
|
||||
"valinnaisesti projektin nimi tai sen ID. Kysy pilvipalvelusi ylläpitäjältä "
|
||||
"käyttäjänimeäsi, salasanaa, sekä projektin nimeä jotta voit luoda "
|
||||
"tunnistautumiseen tarvittavia tunnisteita. Vaihtoehtoisesti voit antaa "
|
||||
"tunnisteen ilman käyttäjänimeä ja salasanaa."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Nykyiset API versiot"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Vanhentuneet API versiot"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Vie $OS_PROJECT_ID tunnuskutsusta ja käytä Compute API:a listataksesi "
|
||||
"näköistiedostot:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Vie $OS_PROJECT_ID tunnuskutsusta ja käytä Compute API:a listataksesi "
|
||||
"palvelimet:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr ""
|
||||
"Vie projektin nimi ``OS_PROJECT_NAME`` ympäristömuuttujalle. Esimerkiksi:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "Vie tunnus ID ``OS_TOKEN`` ympäristömuuttujaan. Esimerkiksi:"
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Täydelliset tiedot OpenStack asiakkaista, mukaan lukien kuinka lähteistää "
|
||||
"``openrc`` tiedosto, katso `OpenStack käyttöoppaasta <https://docs.openstack."
|
||||
"org/user-guide/>`__, `OpenStack ylläpitäjän opas <https://docs.openstack.org/"
|
||||
"admin-guide/>`__, ja `OpenStack komentorivi käyttöliittymän viite <https://"
|
||||
"docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "Esimerkiksi asenna ``openstack`` asiakas:"
|
||||
|
||||
msgid ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
msgstr ""
|
||||
"Lisätietoja API:n tilasta sekä sen versiosta, katso `Version Discovery "
|
||||
"<https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "Mikäli luvaton virhe (401) tapahtuu, pyydä uusi tunnus."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Asenna tai päivitä asiakas paketti:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "Asenna asiakkaat"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Käynnistä instanssi"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API dokumentaatio"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack API:t"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack komentoriviasiakkaat"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parametri"
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "Lähetä API-pyynnöt"
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Tuetut API versiot"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"Block Storage API v3 on toiminnallisesti identtinen Block Storage API v2:"
|
||||
"een. Myöhemmät API v3 mikroversiot, kuten v3.1, eroavat versiosta API v2."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"OpenStack projekti tarjoaa asiakasohjelman komentoriville joka mahdollistaa "
|
||||
"API:n käytön helppokäyttöisillä komennoilla. Katso osasta nimeltä :ref:"
|
||||
"`client-intro`."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"Jaetut tiedostojärjestelmät API v1 on toiminnallisesti identtinen Jaetut "
|
||||
"tiedostojärjestelmät API v2 kanssa. Myöhemmät API v2 mikroversiot, kuten "
|
||||
"versio v2.1, eroavat versiosta API v1."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "Oheinen esimerkki näyttää onnistuneen vastauksen:"
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "Käyttäjän salasana."
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr ""
|
||||
"Projektin nimi. Molemmat *Project ID* ja *Project Name* ovat valinnaisia."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"Käyttäjänimi. Jos et anna käyttäjänimeä ja salasanaa sinun tulee antaa "
|
||||
"tunnus."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"Tunnistautuaksesi käyttämään OpenStack palveluita, sinun tulee ensiksi antaa "
|
||||
"tunnistautumispyyntö OpenStack Identity:lle saadaksesi tunnuksen."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr ""
|
||||
"Aloittaaksesi API pyyntöjen lähettämisen, käytä yhtä oheisistä metodeista:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr ""
|
||||
"Käynnistääksesi instanssin pistä muistiin halutun näköistiedoston ja sävyn "
|
||||
"ID."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"Käynnistääksesi instansseja sinun tulee valita nimi, näköistiedosto, ja "
|
||||
"instanssin sävy."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"Käynnistääksesi ``my_instance`` instanssin, suorita ``openstack server "
|
||||
"create`` komento yhdessä näköistiedoston ja sävyn ID:n sekä palvelimen nimen "
|
||||
"kanssa:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "Listataksesi sävyt suorita tämä komento:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "Poistaaksesi ``openstack`` asiakas, suorita tämä komento:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "Päivittääksesi ``openstack`` asiakas, suorita tämä komento:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Tyyppi"
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"Käytä tätä SDK:ta kirjoittaaksesi Python automatisointiin soveltuvia "
|
||||
"skriptejä jotka luo ja hallitsee resursseja OpenStack pilvessä. "
|
||||
"Ohjelmistokehityspakkaus toteuttaa Python sidoksia OpenStack API:iin, joka "
|
||||
"mahdollistaa automatisoitujen tehtävien suorituksen Pythonilla tekemällä "
|
||||
"kutsuja suoraan Python objekteihin ilman REST-kutsuja. Kaikki OpenStack "
|
||||
"komentorivityökalut ovat toteutettu käyttämällä Python SDK:ta. Katso "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ "
|
||||
"*OpenStack käyttöoppaasta*."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"Kun lähetät API-kutsuja sisällytät tunnisteesi ``X-Auth-Token`` "
|
||||
"ylätunnisteeseen. Mikäli käytät useampia OpenStack palveluita sinun tulee "
|
||||
"antaa tunniste kullekin palvelulle erikseen. Tunniste on voimassa vain "
|
||||
"rajoitetun ajan kunnes se vanhentuu. Tunniste saattaa tulla myös muista "
|
||||
"syistä käyttökelvottomaksi. Esimerkiksi jos käyttäjälle asetetut roolit "
|
||||
"muutetaan ei nykyinen tunnus ole enää voimassa."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "Missä *PROJECT* on projektin nimi."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (mikroversiot)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(mikroversiot)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (mikroversiot)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(mikroversiot)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (mikroversiot)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Datan prosessointi v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Tietokanta palvelu API v1.0 <https://developer.openstack.org/api-ref/"
|
||||
"database/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Nimipalvelin (DNS) API v2 <https://developer.openstack.org/api-ref/dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API palvelu <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 laajennukset <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 laajennukset <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Image palvelu API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(mikroversiot)"
|
||||
|
||||
msgid ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
msgstr ""
|
||||
"`Resurssien optimointi API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Haku API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Jaetut tiedostojärjestelmät API v2 <https://developer.openstack.org/api-ref/"
|
||||
"shared-file-system>`__ (mikroversiot)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "salasana (pakollinen)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "merkkijono"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "käyttäjänimi (pakollinen)"
|
@ -1,768 +0,0 @@
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# suhartono <cloudsuhartono@gmail.com>, 2016. #zanata
|
||||
# suhartono <cloudsuhartono@gmail.com>, 2017. #zanata
|
||||
# suhartono <cloudsuhartono@gmail.com>, 2018. #zanata
|
||||
# suhartono <cloudsuhartono@gmail.com>, 2019. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4252\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-07-10 08:48+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-07-17 06:49+0000\n"
|
||||
"Last-Translator: suhartono <cloudsuhartono@gmail.com>\n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Indonesian\n"
|
||||
|
||||
msgid ""
|
||||
"'Current' indicates a stable version that is up-to-date, recent, and might "
|
||||
"receive future versions. This endpoint should be prioritized over all others."
|
||||
msgstr ""
|
||||
"'Current' menunjukkan versi stabil yang mutakhir, terkini, dan mungkin "
|
||||
"menerima versi mendatang. Endpoint ini harus diprioritaskan daripada yang "
|
||||
"lainnya."
|
||||
|
||||
msgid ""
|
||||
"'Deprecated' is a stable version that is still available but is being "
|
||||
"deprecated and might be removed in the future."
|
||||
msgstr ""
|
||||
"'Deprecated' is adalah versi stabil yang masih tersedia tetapi sedang usang "
|
||||
"dan mungkin dihapus di masa depan."
|
||||
|
||||
msgid ""
|
||||
"'Experimental' is not a stable version. This version is under development or "
|
||||
"contains features that are otherwise subject to change."
|
||||
msgstr ""
|
||||
"'Experimental' bukan versi stabil. Versi ini sedang dikembangkan atau berisi "
|
||||
"fitur yang dapat berubah sewaktu-waktu."
|
||||
|
||||
msgid ""
|
||||
"'Supported' is a stable version that is available on the server. However, it "
|
||||
"is not likely the most recent available and might not be updated or might be "
|
||||
"deprecated at some time in the future."
|
||||
msgstr ""
|
||||
"'Supported' adalah versi stabil yang tersedia di server. Namun, ini "
|
||||
"sepertinya bukan yang terbaru yang tersedia dan mungkin tidak diperbarui "
|
||||
"atau mungkin ditinggalkan pada suatu waktu di masa depan."
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "** OpenStack Python Software Development Kit (SDK) **"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "** OpenStack command-line klien**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST klien**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Project Domain* (optional)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Project ID* (opsional)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Project Name* (opsional)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*User Domain* (wajib)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"Sebuah alat command-line yang memungkinkan Anda mengirim permintaan HTTP dan "
|
||||
"menerima tanggapan. Lihat bagian yang disebut :ref:"
|
||||
"`openstack_API_quick_guide`."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API quick-start contoh"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Setelah Anda mengotentikasi melalui Identity, Anda dapat menggunakan "
|
||||
"OpenStack API lain untuk membuat dan mengelola sumber daya di awan OpenStack "
|
||||
"Anda. Anda dapat memulai instance dari image dan menetapkan metadata untuk "
|
||||
"instance melalui Compute API atau ** openstack ** command-line klien."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Autentikasi"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Alur kerja otentikasi dan permintaan API "
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"Sebelum Anda dapat mengeluarkan command klien, Anda harus men-download dan "
|
||||
"mendapatkan sumber file ''openrc`` untuk mengatur variabel lingkungan."
|
||||
|
||||
msgid ""
|
||||
"Both Mozilla and Google provide browser-based graphical interfaces for REST. "
|
||||
"For Firefox, see `RESTClient <https://addons.mozilla.org/en-US/firefox/addon/"
|
||||
"restclient/>`__. For Chrome, see `rest-client <https://code.google.com/"
|
||||
"archive/p/rest-client/>`__."
|
||||
msgstr ""
|
||||
"Baik Mozilla dan Google menyediakan antarmuka grafis berbasis browser untuk "
|
||||
"REST. Untuk Firefox, lihat `RESTClient <https://addons.mozilla.org/en-US/"
|
||||
"firefox/addon/restclient/>` __. Untuk Chrome, lihat `rest-client <https://"
|
||||
"code.google.com/archive/p/rest-client/>` __."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Kredensial biasanya merupakan kombinasi antara nama pengguna dan kata sandi "
|
||||
"Anda, dan secara opsional, nama atau ID proyek awan Anda. Mintalah "
|
||||
"administrator awan Anda untuk nama pengguna, kata sandi, dan proyek Anda "
|
||||
"sehingga Anda dapat menghasilkan token otentikasi. Sebagai alternatif, Anda "
|
||||
"dapat menyediakan token daripada nama pengguna dan kata sandi."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Versi API saat ini"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Versi API usang (deprecated)"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Deskripsi"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Ekspor $OS_PROJECT_ID dari panggilan tanda, dan kemudian menggunakan Compute "
|
||||
"API untuk daftar image:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Ekspor $OS_PROJECT_ID dari panggilan tanda, dan kemudian menggunakan Compute "
|
||||
"API untuk daftar server:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr ""
|
||||
"Ekspor nama proyek ke variabel lingkungan ``OS_PROJECT_NAME``. Sebagai "
|
||||
"contoh:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "Ekspor token ID ke variabel lingkungan \"OS_TOKEN``. Sebagai contoh:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"Pertama, ekspor nama proyek Anda ke variabel lingkungan ``OS_PROJECT_NAME`, "
|
||||
"nama domain proyek Anda ke variabel lingkungan ``OS_PROJECT_DOMAIN_NAME``, "
|
||||
"nama pengguna Anda ke variabel lingkungan ``OS_USERNAME``, kata sandi Anda "
|
||||
"ke variabel lingkungan``OS_PASSWORD `` dan nama domain pengguna Anda ke "
|
||||
"variabel lingkungan ``OS_USER_DOMAIN_NAME``."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Untuk informasi lengkap tentang klien OpenStack, termasuk cara mencari file "
|
||||
"``openrc``, lihat `OpenStack End User Guide <https://docs.openstack.org/user-"
|
||||
"guide/>`__, `OpenStack Administrator Guide <https://docs.openstack.org/admin-"
|
||||
"guide/>`__, dan `OpenStack Command-Line Interface Reference <https://docs."
|
||||
"openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "Contoh install ``openstack`` klien:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Untuk informasi tentang klien command-line, lihat `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
|
||||
msgid ""
|
||||
"For information about the default ports that the OpenStack components use, "
|
||||
"see `Firewalls and default ports <https://docs.openstack.org/install-guide/"
|
||||
"firewalls-default-ports.html>`_ in the *OpenStack Installation Guide*."
|
||||
msgstr ""
|
||||
"Untuk informasi tentang port default yang digunakan komponen OpenStack, "
|
||||
"lihat `Firewalls and default ports <https://docs.openstack.org/install-guide/"
|
||||
"firewalls-default-ports.html>`_ dalam *OpenStack Installation Guide*."
|
||||
|
||||
msgid ""
|
||||
"For more information about API status values and version information, see "
|
||||
"`Version Discovery <https://wiki.openstack.org/wiki/VersionDiscovery>`__."
|
||||
msgstr ""
|
||||
"Untuk informasi lebih lanjut tentang nilai status API dan informasi versi, "
|
||||
"lihat `Version Discovery <https://wiki.openstack.org/wiki/"
|
||||
"VersionDiscovery>`__."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"Untuk pekerjaan scripting dan permintaan sederhana, Anda dapat menggunakan "
|
||||
"command-line klien seperti \"openstack-client`` klien. Klien ini "
|
||||
"memungkinkan Anda untuk menggunakan Identity, Compute, Block Storage, dan "
|
||||
"Object Storage API melalui interface command-line. Juga, setiap proyek "
|
||||
"OpenStack memiliki proyek klien terkait yang meliputi Python API bindings "
|
||||
"dan interface command-line (CLI)."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "Jika terjadi kesalahan Unauthorized (401), mintalah token lain."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"Jika permintaan berhasil, ia mengembalikan kode tanggapan ``Created (201)`` "
|
||||
"beserta token sebagai nilai pada header tanggapan ``X-Subject-Token``. "
|
||||
"Header diikuti oleh body respon yang memiliki objek tipe ``token`` yang "
|
||||
"memiliki tanggal kedaluwarsa token dan waktu dalam bentuk ``\"expires_at\":"
|
||||
"\"datetime\"`` beserta atribut lainnya."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"Dalam pengerahan OpenStack tipikal yang menjalankan Identity, Anda dapat "
|
||||
"menentukan nama proyek Anda, dan nama pengguna dan kredensial kata sandi "
|
||||
"untuk diautentikasi."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"Dalam permintaan di atas, string kueri ``nocatalog`` digunakan karena Anda "
|
||||
"hanya ingin mendapatkan token dan tidak menginginkan katalog layanan (jika "
|
||||
"tersedia untuk pengguna) mengacaukan hasilnya. Jika pengguna ingin "
|
||||
"mendapatkan katalog layanan, string kueri ini tidak perlu ditambahkan ke URL."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Menginstal atau memperbarui paket klien:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "Menginstal klien"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Meluncurkan instance"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "Dokumentasi API OpenStack"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack API"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack command-line klien"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parameter"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"Minta token otentikasi dari endpoint Identity dimana administrator cloud "
|
||||
"memberi Anda. Kirim 'payload of credential' dalam permintaan seperti yang "
|
||||
"ditunjukkan pada :ref: `authenticate`. Jika permintaan berhasil, server akan "
|
||||
"mengembalikan token otentikasi."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "Kirim permintaan API"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"Kirim permintaan API dan masukan token di ``header X-Auth-Token``. Terus "
|
||||
"kirim permintaan API dengan token itu sampai layanan menyelesaikan "
|
||||
"permintaan itu atau terjadi kesalahan Unauthorized (401)."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Versi API didukung"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"Blok Storage API v3 secara fungsional identik dengan Blok Storage API v2. "
|
||||
"Selanjutnya API microversions v3, seperti v3.1, berbeda dari API v2."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr "Domain proyek. Ini adalah bagian yang dibutuhkan dari objek lingkup."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "Domain pengguna."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"Proyek OpenStack memberikan command-line klien yang memungkinkan Anda untuk "
|
||||
"mengakses API melalui command easy-to-use. Lihat bagian yang disebut :ref:"
|
||||
"`client-intro`."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"Shared File Systems API v1secara fungsional identik dengan Shared File "
|
||||
"Systems API v2. API v2 microversions selanjutnya, seperti v2.1, berbeda "
|
||||
"dari API v1."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"Contoh di bawah ini menggunakan endpoint dari instalasi Ocata dengan "
|
||||
"mengikuti panduan instalasi. Namun, Anda juga dapat menggunakan ``"
|
||||
"$OS_AUTH_URL`` sebagai variabel lingkungan yang diperlukan untuk mengubah "
|
||||
"URL."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"Contoh di bagian ini menggunakan perintah cURL. Untuk informasi tentang "
|
||||
"cURL, lihat http://curl.haxx.se/. Untuk informasi tentang API OpenStack, "
|
||||
"lihat :ref: `current_api_versions`."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "Contoh berikut menunjukkan respon yang sukses:"
|
||||
|
||||
msgid ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
msgstr ""
|
||||
"Tautan di bawah ini dikelompokkan berdasarkan status API yang mencerminkan "
|
||||
"keadaan titik akhir pada layanan."
|
||||
|
||||
msgid ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ to "
|
||||
"enable small, documented changes to the API on a resource-by-resource basis."
|
||||
msgstr ""
|
||||
"The notation '(microversions)' next to the link to an API reference "
|
||||
"indicates that the API follows a `pattern established by the Compute service "
|
||||
"<https://developer.openstack.org/api-guide/compute/microversions.html>`__ "
|
||||
"untuk mengaktifkan perubahan kecil, yang terdokumentasi untuk API "
|
||||
"berdasarkan sumber daya demi sumber daya."
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "Password untuk user."
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr "'Payload of credential' untuk mengotentikasi berisi parameter ini:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"ID proyek *project ID* dan *Project Name* bersifat opsional. Tapi salah "
|
||||
"satunya diperlukan bersamaan dengan *Project Domain *. Mereka terbungkus "
|
||||
"dalam lingkup objek. Jika Anda tidak mengetahui nama proyek atau ID, "
|
||||
"kirimkan sebuah permintaan tanpa objek lingkup apapun."
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr "Nama proyek. *Project ID* dan *Project Name* bersifat opsional."
|
||||
|
||||
msgid ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
msgstr ""
|
||||
"Token kedaluwarsa setiap jam secara default, meskipun dapat dikonfigurasikan "
|
||||
"secara berbeda - lihat opsi `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ di dalam "
|
||||
"*Identity Service Configuration Guide*."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"Username. Jika Anda tidak memberikan username dan password, Anda harus "
|
||||
"memberikan token."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "Kemudian, jalankan command cURL ini untuk meminta token:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"Kemudian, gunakan API Compute untuk daftar flavor, menggantikan Compute API "
|
||||
"endpoint dengan satu berisi ID proyek Anda di bawah ini:"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"Bagian ini menunjukkan bagaimana membuat beberapa panggilan Compute API "
|
||||
"dasar. Untuk daftar lengkap panggilan Compute API, lihat `Compute API "
|
||||
"<https://developer.openstack.org/api-ref/compute/>`__."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"Untuk otentikasi akses ke layanan OpenStack, Anda harus terlebih dahulu "
|
||||
"mengirim permintaan otentikasi dengan 'payload of credential' ke OpenStack "
|
||||
"Identity untuk mendapatkan token otentikasi."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr ""
|
||||
"Untuk mulai mengirim permintaan API, gunakan salah satu metode berikut:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr ""
|
||||
"Untuk memulai sebuah instance, perhatikan ID image yang Anda inginkan dan "
|
||||
"flavor."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"Untuk meluncurkan instance, Anda harus memilih nama, image, dan flavor untuk "
|
||||
"instance Anda."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"Untuk meluncurkan instance ``my_instance``, jalankan command ``OpenStack "
|
||||
"server create`` dengan image dan flavor ID dan nama server:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"Untuk melihat daftar image yang tersedia, panggil API Compute melalui "
|
||||
"``openstack`` klien:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "Untuk melihat daftar flavor, jalankan command ini:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "Untuk menghapus ``openstack`` klien, jalankan command ini:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "Untuk memperbarui ``openstack`` klien, jalankan command ini:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Tipe"
|
||||
|
||||
msgid ""
|
||||
"Use ``pip`` to install the OpenStack clients on a Mac OS X or Linux system. "
|
||||
"It is easy and ensures that you get the latest version of the client from "
|
||||
"the `Python Package Index <https://pypi.org/>`__. Also, ``pip`` lets you "
|
||||
"update or remove a package."
|
||||
msgstr ""
|
||||
"Gunakan ``pip`` untuk menginstal klien OpenStack pada sistem Mac OS X atau "
|
||||
"Linux. Mudah dan memastikan bahwa Anda mendapatkan versi terbaru dari klien "
|
||||
"dari `Python Package Index <https://pypi.org/>` __. Juga, ``pip`` "
|
||||
"memungkinkan Anda memperbarui atau menghapus paket."
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"Gunakan OpenStack API untuk meluncurkan server instance, membuat image, "
|
||||
"menetapkan metadata untuk instance dan image, membuat kontainer penyimpanan "
|
||||
"dan objek, dan lengkap tindakan lainnya di cloud OpenStack Anda."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"Gunakan SDK ini untuk menulis skrip otomasi Python yang membuat dan "
|
||||
"mengelola sumber daya di awan OpenStack Anda. SDK menerapkan binding Python "
|
||||
"ke API OpenStack, yang memungkinkan Anda untuk melakukan tugas otomasi "
|
||||
"dengan Python dengan melakukan panggilan pada objek Python daripada membuat "
|
||||
"panggilan REST secara langsung. Semua alat command-line OpenStack "
|
||||
"diimplementasikan dengan menggunakan SDK Python. Lihat `OpenStack Python SDK "
|
||||
"<https://docs.openstack.org/user-guide/sdk.html>` __ di *OpenStack End User "
|
||||
"Guide *."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"Ketika Anda mengirim permintaan API, Anda memasukan token di ``header X-Auth-"
|
||||
"Token``. Jika Anda mengakses beberapa layanan OpenStack, Anda harus "
|
||||
"mendapatkan token untuk setiap layanan. Token berlaku untuk waktu yang "
|
||||
"terbatas sebelum kadaluarsa. Token juga dapat menjadi tidak valid karena "
|
||||
"alasan lain. Misalnya, jika peran user berubah, token yang ada milik user "
|
||||
"tidak valid lagi."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "Dimana *PROJECT* adalah nama proyek."
|
||||
|
||||
msgid ""
|
||||
"With the `TryStack <https://www.openstack.org/software/start>`__ OpenStack "
|
||||
"installation, these services work together in the background of the "
|
||||
"installation, and many of these examples work on TryStack."
|
||||
msgstr ""
|
||||
"Dengan `TryStack <https://www.openstack.org/software/start>` __ instalasi "
|
||||
"OpenStack, layanan ini bekerja bersama di latar belakang instalasi, dan "
|
||||
"banyak dari contoh ini bekerja di TryStack."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"Anda harus menginstal klien untuk setiap proyek secara terpisah, tetapi "
|
||||
"``python-openstackclient`` dapat mencakup beberapa proyek."
|
||||
|
||||
msgid ""
|
||||
"`Acceleration API v1 <https://developer.openstack.org/api-ref/accelerator/v1/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Acceleration API v1 <https://developer.openstack.org/api-ref/accelerator/v1/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Function Engine <https://developer.openstack.org/api-ref/function-engine/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Function Engine <https://developer.openstack.org/api-ref/function-engine/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Key Manager API v1 <https://docs.openstack.org/barbican/latest/api/>`__"
|
||||
msgstr ""
|
||||
"`Key Manager API v1 <https://docs.openstack.org/barbican/latest/api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Placement API <https://developer.openstack.org/api-ref/placement/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
msgstr ""
|
||||
"`Resource Optimization API v1 <https://developer.openstack.org/api-ref/"
|
||||
"resource-optimization>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "password (wajib)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "string"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "username (wajib)"
|
@ -1,476 +0,0 @@
|
||||
# Akihiro Motoki <amotoki@gmail.com>, 2015. #zanata
|
||||
# KATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>, 2015. #zanata
|
||||
# KATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>, 2016. #zanata
|
||||
# KATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>, 2017. #zanata
|
||||
# Yuko Fukuda <fukuda.yuko@jp.fujitsu.com>, 2017. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2017-04-24 04:33+0000\n"
|
||||
"Last-Translator: Yuko Fukuda <fukuda.yuko@jp.fujitsu.com>\n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Japanese\n"
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Software Development Kit (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack コマンドラインクライアント**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST クライアント**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"HTTP リクエストを送信し、レスポンスを受信できるコマンドラインツール。:ref:"
|
||||
"`openstack_API_quick_guide` を参照してください。"
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API クイックスタートの例"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Identity 経由で認証した後、他の OpenStack API を使用して、 OpenStack クラウド"
|
||||
"にリソースを作成したり管理したりできます。 Compute API や **openstack** コマ"
|
||||
"ンドラインクライアントを用いて、イメージからインスタンスを起動し、メタデータ"
|
||||
"をインスタンスに割り当てることができます。"
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "認証"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "認証と API リクエストのワークフロー"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"クライアントコマンドを発行する前に、``openrc`` ファイルをダウンロードし、これ"
|
||||
"を読み込んで、環境変数を設定する必要があります。"
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "カレント API バージョン"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "非推奨 API バージョン"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"トークンのコールから $OS_PROJECT_ID を設定してから、Compute API を使用してイ"
|
||||
"メージを一覧表示します。"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"トークンのコールから $OS_PROJECT_ID を設定してから、Compute API を使用して"
|
||||
"サーバーを一覧表示します。"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "トークン ID を環境変数 ``OS_TOKEN`` として export します。例:"
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"``openrc`` ファイルの読み込み方法など、OpenStack クライアントの詳細は、"
|
||||
"`OpenStack エンドユーザーガイド <https://docs.openstack.org/ja/user-guide/"
|
||||
">`__ 、`OpenStack 管理者ガイド <https://docs.openstack.org/admin-guide/"
|
||||
">`__ 、`OpenStack Command-Line Interface Reference <https://docs.openstack."
|
||||
"org/cli-reference/>`__ を参照してください。"
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "例えば、 以下は ``openstack`` クライアントをインストールします。"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"コマンドラインクライアントに関する情報は `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__ を参照してください。"
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"スクリプト作成や単純なリクエストには ``openstack-client`` クライアントなどの"
|
||||
"コマンドラインクライアントが利用できます。このクライアントを使って、コマンド"
|
||||
"ラインインターフェースから Identity API、 Compute API、Block Storage API、"
|
||||
"Object Storage API を使用できます。また、各 OpenStack プロジェクトには対応す"
|
||||
"るクライアントプロジェクトがあり、 Python API バインディングとコマンドライン"
|
||||
"インターフェース (CLI) が提供されています。"
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr ""
|
||||
"Unauthorized (401) エラーが発生した場合、別のトークンをリクエストします。"
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "パッケージのインストールまたは更新を行います。"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "クライアントのインストール"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "インスタンスの起動"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API ドキュメント"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack API"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack コマンドラインクライアント"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "パラメーター"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"クラウド管理者が指定した Identity エンドポイントに対して認証トークンを要求し"
|
||||
"ます。リクエストでクレデンシャルのペイロードを送信します。詳細は :ref:"
|
||||
"`authenticate` に書かれているとおりです。リクエストに成功すると、サーバーから"
|
||||
"認証トークンが返されます。"
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "API リクエストの送信"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"API リクエストを送信する際には ``X-Auth-Token`` ヘッダーにトークンを指定しま"
|
||||
"す。サービスに対するリクエストが全部完了するか、 Unauthorized (401) エラーが"
|
||||
"発生するまで、API リクエストの送信ではそのトークンを使い続けます。"
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "サポート API バージョン"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"Block Storage API v3 は、Block Storage API v2 と同じ機能を提供します。将来の "
|
||||
"API v3 マイクロバージョン、v3.1 などは、API v2 と異なります。"
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"OpenStack の各プロジェクトは、使いやすいコマンドから API にアクセスできるコマ"
|
||||
"ンドラインクライアントを提供しています。 :ref:`client-intro` を参照してくださ"
|
||||
"い。"
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"Shared File Systems API v2 は、Shared File Systems API v1 と同じ機能を提供し"
|
||||
"ます。将来の API v2 マイクロバージョン、v2.1 などは、API v1 と異なります。"
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"このセクションにある例では、cURL コマンドを使用します。cURL に関する情報は "
|
||||
"http://curl.haxx.se/ を参照してください。OpenStack API に関する情報は :ref:"
|
||||
"`current_api_versions` を参照してください。"
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "以下は、成功した場合の応答例です。"
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "ユーザーのパスワード。"
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr ""
|
||||
"認証のためのクレデンシャルのペイロードには、以下のパラメーターを指定します。"
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"ユーザー名。ユーザー名とパスワードを指定しない場合は、トークンを指定する必要"
|
||||
"があります。"
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "次に、この cURL コマンドを実行して、トークンをリクエストします。"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"次に、Compute API を使用してフレーバーを一覧表示します。Compute API のエンド"
|
||||
"ポイントをお使いのプロジェクト ID に置き換えてください。"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"このセクションでは、基本的な Compute API コールの実行方法を示します。 "
|
||||
"Compute API コールの一覧は `Compute API <https://developer.openstack.org/api-"
|
||||
"ref/compute/>`__ を参照してください。"
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"OpenStack サービスへのアクセスの認証を行うには、まず最初に、ペイロードにクレ"
|
||||
"デンシャルを指定して OpenStack Identity に認証リクエストを行って、認証トーク"
|
||||
"ンを取得する必要があります。"
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr "API リクエストを送信するには、以下の方法のいずれかを使用します。"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr ""
|
||||
"インスタンスの起動にあたり、使用したいイメージとフレーバーの ID を記録しま"
|
||||
"す。"
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"インスタンスを起動する場合、インスタンスの名前、イメージ、フレーバーを選択す"
|
||||
"る必要があります。"
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"インスタンス ``my_instance`` を起動するには、イメージ ID、フレーバー ID、サー"
|
||||
"バー名を指定して ``openstack server create`` コマンドを実行します。"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"利用可能なイメージの一覧を表示するには、 ``openstack`` クライアント経由で "
|
||||
"Compute API を呼び出します。"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "フレーバーの一覧を表示するには、このコマンドを実行します。"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` クライアントを削除する場合、このコマンドを実行します。"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` クライアントを更新する場合、このコマンドを実行します。"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "型"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"OpenStack API を使用すると、OpenStack クラウドにおいて、サーバーインスタンス"
|
||||
"の起動、イメージの作成、インスタンスやイメージへのメタデータの割り当て、スト"
|
||||
"レージコンテナーやオブジェクトコンテナーの作成、他の操作などを実行できます。"
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"SDK を使って、OpenStack クラウドでリソースの作成や管理を自動化する Python "
|
||||
"ツールを作成できます。この SDK は OpenStack API への Python バインディングの"
|
||||
"実装で、これを使うことで、直接 REST コールを発行するのではなく、Python オブ"
|
||||
"ジェクトに対する呼び出しで Python で自動化タスクを実行できます。すべての "
|
||||
"OpenStack コマンドラインツールは Python SDK を使用して実装されています。"
|
||||
"*OpenStack エンドユーザーガイド* の `OpenStack Python SDK <https://docs."
|
||||
"openstack.org/ja/user-guide/sdk.html>`__ を参照してください。"
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"API リクエストの送信時、``X-Auth-Token`` ヘッダーにトークンを指定します。複数"
|
||||
"の OpenStack サービスにアクセスする場合、サービス毎にトークンを取得する必要が"
|
||||
"あります。トークンは一定時間有効で、その後期限切れとなります。トークンは他の"
|
||||
"理由で失効することもあります。例えば、ユーザーのロールが変更された場合、その"
|
||||
"ユーザーの既存のトークンは無効になります。"
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "*PROJECT* はプロジェクト名です。"
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"各プロジェクトのクライアントは別々にインストールする必要がありますが、 "
|
||||
"``python-openstackclient`` は複数のプロジェクトに対応しています。"
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`アプリケーションカタログAPI v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(マイクロバージョン)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (マイクロバージョン)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ (マイクロ"
|
||||
"バージョン)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (マイクロバージョン)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "パスワード (必須)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "文字列"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "ユーザー名 (必須)"
|
@ -1,616 +0,0 @@
|
||||
# Ian Y. Choi <ianyrchoi@gmail.com>, 2015. #zanata
|
||||
# Sungjin Kang <gang.sungjin@gmail.com>, 2015. #zanata
|
||||
# Sungjin Kang <gang.sungjin@gmail.com>, 2016. #zanata
|
||||
# Ian Y. Choi <ianyrchoi@gmail.com>, 2017. #zanata
|
||||
# minwook-shin <minwook0106@gmail.com>, 2017. #zanata
|
||||
# Sungwook Choi <csucom@gmail.com>, 2018. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-09-20 12:16+0000\n"
|
||||
"Last-Translator: Sungwook Choi <csucom@gmail.com>\n"
|
||||
"Language: ko_KR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Korean (South Korea)\n"
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python 소프트웨어 개발 키트 (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack 명령줄 클라이언트**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST 클라이언트**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Project Domain* (선택적)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Project ID* (선택적)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Project Name* (선택적)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*User Domain* (필수)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"HTTP 요청을 보내고, 응답을 받을 수 있도록 해주는 명령 줄 도구입니다. 자세한 "
|
||||
"설명은 :ref:`openstack_API_quick_guide` 에서 확인할 수 있습니다."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API 빠른 시작 예제"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Identity를 통해 인증이 완료된 후, 다른 OpenStack API를 사용하여 OpenStack 클"
|
||||
"라우드의 자원을 생성 및 관리할 수 있습니다. 이미지로부터 인스턴스를 구동할 "
|
||||
"수 있으며, 메타데이터를 Compute API 또는 **openstack** 커맨드라인 클라이언트"
|
||||
"를 통해 인스턴스에 할당할 수 있습니다."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "인증"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "인증과 API 요청에 대한 작업 흐름도"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"클라이언트 명령어를 실행 가능하도록 하기 전에, ``openrc`` 파일을 다운로드 및 "
|
||||
"소스로 사용하여 환경 변수를 설정해야 합니다."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"자격 증명은 대개 사용자 이름과 암호의 조합이며, 선택적으로 클라우드 프로젝트"
|
||||
"의 이름 또는 ID입니다. 클라우드 관리자에게 사용자 이름, 암호 및 프로젝트를 문"
|
||||
"의하여 인증 토큰을 생성 할 수 있도록하십시오. 또한 사용자 이름과 암호 대신 토"
|
||||
"큰을 제공 할 수도 있습니다."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "최신 API 버전"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "지원 중단된 API 버전"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"해당 토큰 요청에서 $OS_PROJECT_ID를 export하고, Compute API를 사용하여 이미"
|
||||
"지 목록을 살펴봅니다:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"해당 토큰 요청에서 $OS_PROJECT_ID를 export하고, Compute API를 사용하여 서버 "
|
||||
"목록을 살펴봅니다:"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr "프로젝트 이름을 ``OS_PROJECT_NAME`` 환경 변수로 내 보냅니다. 예 :"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "``OS_TOKEN`` 환경 변수에 토큰 ID를 출력합니다. 예를 들면:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"먼저, 프로젝트 이름을 ``OS_PROJECT_NAME`` 환경 변수로, 프로젝트 도메인 이름"
|
||||
"을 ``OS_PROJECT_DOMAIN_NAME`` 환경 변수로, 사용자 이름을 ``OS_USERNAME`` 환"
|
||||
"경 변수로, 암호를 ``OS_PASSWORD`` 환경 변수로, 그리고 사용자 도메인 이름을 "
|
||||
"``OS_USER_DOMAIN_NAME`` 환경 변수로 내보내기를 합니다."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"``openrc`` 파일을 소스로 사용하는 법을 포함한 OpenStack 클라이언트에 대한 자"
|
||||
"세한 정보는 `OpenStack End User Guide <https://docs.openstack.org/user-guide/"
|
||||
">`__, `OpenStack Administrator Guide <https://docs.openstack.org/admin-guide/"
|
||||
">`__, 그리고 `OpenStack Command-Line Interface Reference <https://docs."
|
||||
"openstack.org/cli-reference/>`__ 를 살펴봅니다."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "예를 들면, ``openstack`` 클라이언트를 설치하려면:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"커맨드라인 클라이언트에 대한 자세한 정보는, `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__ 를 확인합"
|
||||
"니다."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"스크립트 작업 및 간단한 요청의 경우, ``openstack-client`` 클라이언트와 같은 "
|
||||
"커맨드라인 클라이언트를 사용할 수 있습니다. 이 클라이언트는 커맨드 인터페이스"
|
||||
"를 이용하여 Compute API를 사용할 수 있도록 합니다. 또한, 각 OpenStack 프로젝"
|
||||
"트는 Python API 바인딩과 명령 라인 인터페이스 (CLI)를 포함하는 적절한 클라이"
|
||||
"언트 프로젝트를 가집니다."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "만약 권한 없음 (401) 에러가 발생하게 되면, 다른 토큰을 요청합니다."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"만약 요청이 성공하면, ``Created (201)`` 응답 코드를 ``X-Subject-Token`` 응답 "
|
||||
"헤더 안에 있는 토큰 값과 함께 반환합니다. 이 헤더 다음에는 다른 속성과 함께 "
|
||||
"``\"expires_at\":\"datetime\"`` 폼에서 토큰 만료 날짜 및 시각을 가지고 있는 "
|
||||
"``token`` 유형 객체에 대한 응답 본문이 뒤따릅니다."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"Identity가 작동하는 전형적인 OpenStack 배포에서는 사용자 프로젝트 이름, "
|
||||
"authenticate를 하기위한 사용자 이름, 암호를 지정해야합니다."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"위 요청에서, 쿼리 문자열 ``nocatalog`` 는 토큰을 얻고자 할 때, 그리고 (사용자"
|
||||
"가 사용 가능한) 서비스 카탈로그를 채우지 않도록 할 때 사용합니다. 사용자가 서"
|
||||
"비스 카탈로그를 가져오려면 이 쿼리 문자열을 URL에 덧붙일 필요가 없습니다."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "클라이언트 패키지 설치 또는 업데이트:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "클라이언트 설치"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "인스턴스 실행"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API 문서"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack APIs"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack 커맨드라인 클라이언트"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "매개 변수"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"클라우드 관리자가 발급한 identity 엔드포인트에서 인증 토큰을 요청합니다. :"
|
||||
"ref:`authenticate` 에 보여지는 바와 같이 요청 내에 credential에 대한 payload"
|
||||
"를 보냅니다. 요청이 성공하면, 서버는 인증 토큰을 반환해 줍니다."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "API 요청 보내기"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"API를 요청하고 ``X-Auth-Token`` 헤더에 토큰을 포함합니다. 서비스가 요청을 완"
|
||||
"료하거나 권한 없음 (401) 에러가 발생할 때까지 토큰을 이용하여 API 요청을 계"
|
||||
"속 보냅니다."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "지원하는 API 버전"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"블록 스토리지 API v3는 기능적으로 블록 스토리지 API v2와 같습니다. 차후 API "
|
||||
"v3 마이크로버전인 v3.1 은 API v2와 달라질 것입니다."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr "프로젝트의 도메인. 이것은 범위 오브젝트의 필수 부분입니다."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "사용자의 도메인."
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"사용하기 쉬운 명령어를 통해 API에 접근하도록 해 주는 커맨드라인 클라이언트를 "
|
||||
"제공하는 OpenStack 프로젝트입니다. :ref:`client-intro` 섹션을 참고합니다."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"공유 파일 시스템 API v1은 기능면에서 공유 파일 시스템 v2와 동일합니다. 차후 "
|
||||
"API v2 마이크로버전인 v2.1 은 API v1과 달라질 것입니다."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"아래 예제는 설치 가이드에 따라 Ocata 설치에 따른 엔드 포인트를 사용합니다. 그"
|
||||
"러나, ``$OS_AUTH_URL`` 를 환경 변수로 사용하여 필요로 하는 경우 URL을 변경할 "
|
||||
"수 있습니다."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"cURL 명령을 이용하는 섹션 예제입니다. cURL에 대한 자세한 정보는 http://curl."
|
||||
"haxx.se/ 를 확인합니다. OpenStack API에 대한 자세한 정보는 :ref:"
|
||||
"`current_api_versions` 를 확인합니다."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "다음은 성공한 응답을 보여줍니다:"
|
||||
|
||||
msgid ""
|
||||
"The links below are grouped according to the API status that reflects the "
|
||||
"state of the endpoint on the service."
|
||||
msgstr ""
|
||||
"아래 링크는 서비스의 엔드포인트 상태를 반영하는 API 상태에 따라 그룹화됩니다."
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "사용자의 암호입니다."
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr "인증 credential에 대한 payload는 다음과 같은 매개 변수를 가집니다:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"프로젝트 ID.*project ID* 및 *Project Name* 모두 선택 사항입니다. 그러나 그 "
|
||||
"중 하나는 * Project Domain *과 함께 필요합니다. 그것들은 scope 오브젝트 아래"
|
||||
"에 싸여있습니다. 프로젝트 이름이나 ID를 모르는 경우 범위 오브젝트없이 요청을 "
|
||||
"보냅니다."
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr ""
|
||||
"프로젝트 이름. * Project ID * 및 * Project Name *은 모두 선택 사항입니다."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"사용자 이름입니다. 만약 사용자 이름과 암호를 제공하지 않는다면, 토큰을 제공해"
|
||||
"야 합니다."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "그런 다음, 토큰 요청을 위해 cURL 명령을 실행합니다:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"그 다음, Compute API 엔드 포인트를 프로젝트 ID를 포함하는 값으로 변경하여 "
|
||||
"flavors 목록을 살펴보기 위한 Compute API를 사용합니다:"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"이번 섹션에서는 어떻게 기본 Compute API 요청을 생성할 것인지에 대해 알려줍니"
|
||||
"다. 전체 Compute API 요청 리스트는 `Compute API <https://developer.openstack."
|
||||
"org/api-ref/compute/>`__ 를 참고하세요. "
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"OpenStack 서비스에 접근하여 인증하기 위해서는 먼저 인증 토큰을 얻기 위해 "
|
||||
"OpenStack Identity에 credential에 대한 payload를 요청하는 인증을 발급해야 합"
|
||||
"니다."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr "API 요청을 보내기 위해, 다음 방법 중 하나를 선택해 사용합니다:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr "인스턴스를 시작하기 전, 원하는 이미지와 flavor의 ID를 확인합니다."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"인스턴스를 시작하기 위해 이름, 이미지, 인스턴스의 flavor를 선택해야 합니다."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"``my_instance`` 인스턴스를 구동하려면, 이미지, flavor ID, 서버 이름과 같이 "
|
||||
"``openstack server create`` 명령어를 다음과 같이 실행합니다:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"사용 가능한 이미지 목록을 확인하려면, ``openstack`` 클라이언트를 통해 "
|
||||
"Compute API를 호출합니다:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "Flavor 목록을 확인하려면, 다음 명령을 실행하십시오:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` 클라이언트를 제거하려면, 이 명령을 실행합니다:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` 클라이언트를 업데이트 하려면, 이 명령을 실행합니다:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "타입"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"OpenStack API를 이용하여 서버 인스턴스를 시작하고, 이미지를 생성하고, 인스턴"
|
||||
"스와 이미지에 메타 데이터를 할당하고, 오브젝트와 컨테이너를 생성하며, "
|
||||
"OpenStack 클라우드에서 할 수 있는 모든 작업을 완료할 수 있습니다."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"해당 SDK를 사용하여 OpenStack 클라우드 내 자원을 생성하고 관리하는 자동화 스"
|
||||
"크립트를 작성합니다. 이 SDK는 REST 요청을 직접 만드는 것보다 Python 객체에 대"
|
||||
"한 요청을 생성하여 Python 안에서 자동화 작업을 생성할 수 있도록 하는 "
|
||||
"OpenStack API에 대한 Python 바인딩을 구현합니다. 모든 OpenStack 명령줄 도구들"
|
||||
"은 Python SDK를 사용하여 구현됩니다. *OpenStack 최종 사용자 가이드* 내 "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ 를 "
|
||||
"살펴보세요."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"API 요청을 보낼때, ``X-Auth-Token`` 헤더에 토큰을 포함하여 보냅니다. 여러 "
|
||||
"OpenStack 서비스에 접근한다면, 각 서비스에 대한 토큰을 가져올 수 있습니다. 토"
|
||||
"큰은 제한시간 전까지만 유효합니다. 다른 이유로도 토큰이 만료될 수 있습니다. "
|
||||
"예를 들어, 사용자 역할이 변경되었다면, 사용자가 사용하던 토큰은 더 이상 유효"
|
||||
"하지 않습니다."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "*PROJECT* 은 프로젝트 이름입니다."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"각 프로젝트에 대한 클라이언트를 별도로 설치해야 하지만, ``python-"
|
||||
"openstackclient`` 는 여러 프로젝트를 포함합니다."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`응용 프로그램 카탈로그 API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Application Container Service API <https://developer.openstack.org/api-ref/"
|
||||
"application-container/>`__ (마이크로버전)"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`백업 API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(마이크로버전)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (마이크로버전)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ (마이크로"
|
||||
"버전)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (마이크로버전)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`로드 밸런서 API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
|
||||
msgid "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
msgstr "`Messaging API v2 <https://developer.openstack.org/api-ref/message>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
msgstr ""
|
||||
"`Networking API v2.0 <https://developer.openstack.org/api-ref/network/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
msgstr ""
|
||||
"`Object Storage API v1 <https://developer.openstack.org/api-ref/object-"
|
||||
"store>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Shared File Systems API v2 <https://developer.openstack.org/api-ref/shared-"
|
||||
"file-system>`__ (마이크로버전)"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "password (필수 항목)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "string"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "username (필수 항목)"
|
@ -1,588 +0,0 @@
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# işbaran akçayır <isbaran@gmail.com>, 2017. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2017-09-19 11:30+0000\n"
|
||||
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n>1)\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Turkish (Turkey)\n"
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python Yazılım Geliştirme Kiti (SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack komut satırı istemcisi**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST istemcileri**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*Proje Alanı* (isteğe bağlı)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*Proje Kimliği* (isteğe bağlı)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*Proje Adı* (isteğe bağlı)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*Kullanıcı Alanı* (gerekli)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"HTTP istekleri göndermenizi ve cevapları almanızı sağlayan bir komut satırı "
|
||||
"aracı. :ref:`openstack_API_quick_guide` isimli bölüme bakın."
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API hızlı başlama örnekleri"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"Kimlik ile kimlik doğruladıktan sonra OpenStack bulutunuzdaki kaynakları "
|
||||
"oluşturmak ve yönetmek için diğer OpenStack API'lerini kullanabilirsiniz. "
|
||||
"Hesaplama API'si veya **openstack** komut satırı istemcisini kullanarak "
|
||||
"imajlardan örnekler başlatabilir ve örneklere üstveri atayabilirsiniz."
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "Kimlik doğrula"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "Kimlik doğrulama ve API istek iş akışı"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"İstemi komutlarını çalıştırmadan önce ortam değişkenlerini ayarlamak için "
|
||||
"``openrc`` dosyasını indirmeli ve kabuk uygulamanıza kaynak olarak "
|
||||
"göstermelisiniz."
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"Kimlik bilgileri genellikle kullanıcı adınızın ve parolanızın birleşimidir "
|
||||
"ve isteğe bağlı olarak bulutunuzdaki projenin adı veya kimliğidir. Kimlik "
|
||||
"doğrulama jetonları oluşturabilmek için bulut yöneticinize kullanıcı "
|
||||
"adınızı, şifrenizi ve projenizi sorun. Alternatif olarak, bir kullanıcı adı "
|
||||
"ve parola yerine bir jeton sağlayabilirsiniz."
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "Mevcut API sürümleri"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "Eski API sürümleri"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "Açıklama"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr ""
|
||||
"Jeton çağrısından $OS_PROJECT_ID yi çıkar ve ardından resimleri listelemek "
|
||||
"için Hesaplama API'sini kullan:"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr ""
|
||||
"Jeton çağrısından $OS_PROJECT_ID yi çıkar ve ardından sunucuları listelemek "
|
||||
"için Hesaplama API'sini kullan: "
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr "Proje ismini ``OS_PROJECT_NAME`` ortam değişkenine atayın. Örneğin:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "Jeton kimliğini ``OS_TOKEN`` ortam değişkenine atayın. Örneğin:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"Önce, proje ismini ``OS_PROJECT_NAME`` ortam değişkenine, proje alan ismini "
|
||||
"``OS_PROJECT_DOMAIN_NAME`` ortam değişkenine, kullanıcı adınızı "
|
||||
"``OS_USERNAME`` ortam değişkenine, parolanızı ``OS_PASSWORD`` ortam "
|
||||
"değişkenine ve kullanıcı alan ismini ``OS_USER_DOMAIN_NAME`` ortam "
|
||||
"değişkenine atayın."
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"OpenStack istemcileri hakkında eksiksiz bilgi için, ``openrc`` dosyasının "
|
||||
"nasıl kaynak olarak gösterileceği dahil, `OpenStack Son Kullanıcı Rehberi "
|
||||
"<https://docs.openstack.org/user-guide/>`__, `OpenStack Yönetici Rehberi "
|
||||
"<https://docs.openstack.org/admin-guide/>`__ ve `OpenStack Komut Satırı "
|
||||
"Arayüz Referansı <https://docs.openstack.org/cli-reference/>`__ na bakın."
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "Örneğin, ``openstack`` istemcisini kur:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"Komut satırı istemcileri hakkında daha fazla bilgi için ÒpenStack Komut "
|
||||
"Satırı Arayüzü Referansı <https://docs.openstack.org/cli-reference/>`__ nı "
|
||||
"görün."
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"Betik işleri ve basit istekleri için ``openstack-client`` istemcisi gibi "
|
||||
"komut satırı istemcisini kullanabilirsiniz. Bu istemci bir komut satırı "
|
||||
"arayüzünden Kimlik, Hesaplama, Blok Depolama ve Nesne Depolama API'lerini "
|
||||
"kullanmanızı sağlar. Ayrıca her bir OpenStack projesi Python API bağlamaları "
|
||||
"ve bir komut satırı arayüzü (CLI) içeren ilgili bir istemci projesi "
|
||||
"bulundurur."
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "Unauthorized (401) hatası oluşursa başka bir jeton isteyin."
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"İstek başarılı olursa, ``Created (201)`` yanıt kodunu, jeton ile birlikte "
|
||||
"``X-Subject-Token`` yanıt başlığında bir değer olarak döndürür. Başlığın "
|
||||
"ardından, diğer özelliklerle birliklikte ``\"expires_at\":\"datetime\"`` "
|
||||
"biçiminde jeton son kullanma tarih ve saatini içeren ``token`` tipinde bir "
|
||||
"yanıt gövdesi gelir."
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"Kimlik'i çalıştıran tipik bir OpenStack kurulumunda, kimlik doğrulamak için "
|
||||
"projenizin ismini ve kullanıcı adınızı ve parola bilginizi belirtebilirsiniz."
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"Yukarıdaki istekte, sorgu karakter dizisi ``nocatalog`` sadece jeton almak "
|
||||
"isteğiniz ve çıktıyı dolduracak şekinde servis kataloğunu istemediğiniz için "
|
||||
"kullanıldı. Eğer bir kullanıcı servis kataloğunu almak isterse, bu sorgu "
|
||||
"karakter dizisi URL'e eklenmiş olmamalıdır."
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "Bir istemci paketi kur veya güncelle:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "İstemcileri kur"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "Sunucu Başlat"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API Belgelendirmesi"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack API'leri"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack komut satırı istemcileri"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "Parametre"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"Bulut yöneticinizin size verdiği Kimlik ön ucundan bir kimlik doğrulama "
|
||||
"jetonu isteyin. :ref:`authenticate` de gösterildiği şekilde isteği kimlik "
|
||||
"bilgileri ile yüklü olarak gönderin. Eğer istek başarılı olursa, sunucu bir "
|
||||
"kimlik doğrulama jetonu döner."
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "API istekleri gönder"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"API istekleri gönderin ve jetonu ``X-Auth-Token`` başlığına dahil edin. API "
|
||||
"isteklerini sunucu isteği tamamlayana veya Unauthorized (401) hatası oluşana "
|
||||
"kadar bu jetonla yapmaya devam edin."
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "Desteklenen API sürümleri"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"Blok Depolama API v3, Blok Depolama API v2 ile işlevsel olarak özdeştir. "
|
||||
"Sonraki API v3 mikrosürümleri, 3.1 gibi, API v2'den farklıdır."
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr "Projenin Alanı. Bu, kapsam nesnesinin gerekli bir parçasıdır."
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "Kullanıcının Alanı"
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"OpenStack projesi, kolay kullanılabilir komutlar yardımıyla API'lere "
|
||||
"erişmenizi sağlayan bir komut satırı istemcisi sağlar. :ref:`client-intro` "
|
||||
"isimli bölüme bakın."
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"Paylaşılan Dosya Sistemleri API v1, Paylaşılan Dosya Sistemleri API v2 ile "
|
||||
"işlevsel olarak özdeştir. Sonraki API v2 mikrosürümleri, v2.1 gibi, API "
|
||||
"v1'den farklıdır."
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"Aşağıdaki örnek kurulum rehberini takip ederek kurulan bir Ocata uç "
|
||||
"noktasını kullanır. Ancak, `$OS_AUTH_URL`` i URLi değiştirmek gerektiğinde "
|
||||
"ortam değişkeni olarak kullanabilirsiniz."
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"Bu bölümdeki örnekler cURL komutları kullanıyor. cURL hakkında daha fazla "
|
||||
"bilgi için http://curl.haxx.se/ sayfasına bakın. OpenStack API'leri hakkında "
|
||||
"bilgi için, :ref:`current_api_versions` e bakın."
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "Bir sonraki örnek başarılı bir cevabı göstermektedir:"
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "Kullanıcının parolası"
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr "Kimlik doğrulama için kimlik bilgileri yükü bu parametreleri içerir:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr "*Proje Kimliği* (isteğe bağlı)"
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr "Projenin adı. Hem *Proje Kimliği* hem de *Proje Adı* isteğe bağlıdır."
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr ""
|
||||
"Kullanıcı adı. Eğer bir kullanıcı adı ve parola sağlamıyorsanız, bir jeton "
|
||||
"sağlamalısınız."
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "Daha sonra, bir jeton istemek için bu cURL komutunu çalıştırın:"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"Daha sonra, nitelikleri listelemek için Hesaplama APIsini kullanın, "
|
||||
"aşağıdaki Hesaplama API ön ucunu kendi proje kimliğiniz ile değiştirerek:"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"Bu bölüm bazı basit Hesaplama API çağrılarının nasıl yapılacağını gösterir. "
|
||||
"Hesaplama API çağrılarının bütün bir listesini görmek için `Hesaplama API "
|
||||
"<https://developer.openstack.org/api-ref/compute/>`__ ye bakın."
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"OpenStack servislerine erişim kimlik doğrulaması için, öncelikle OpenStack "
|
||||
"Kimlik'e kimlik doğrulama jetonu almak için kullanıcı bilgileri ile birlikte "
|
||||
"bir kimlik doğrulama isteğinde bulunmalısınız."
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr ""
|
||||
"API istekleri göndermeye başlamak için aşağıdaki yöntemlerden birini "
|
||||
"kullanabilirsiniz:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr ""
|
||||
"Bir örnek başlatmak için istediğiniz imaj ve niteliğin kimliğini not edin."
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr ""
|
||||
"Örnekler başlatmak için, örneğiniz bir isim, bir imaj ve bir nitelik "
|
||||
"seçmelisiniz."
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"``my_instance`` örneğini başlatmak için, ``openstack server create`` "
|
||||
"komutunu imaj ve nitelik kimliği ve sunucu ismi ile çalıştırın:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr ""
|
||||
"Tüm imajları listelemek için ``openstack`` istemcisi üzerinden Hesaplama "
|
||||
"API'sini çağırın:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "Nitelikleri listelemek için bu komutu çalıştırın:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` istemcisini kaldırmak için bu komutu çalıştırın:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "``openstack`` istemcisini güncellemek için bu komutu çalıştırın:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"Sunucu örnekleri başlatmak, imajlar oluşturmak, örneklere ve imajlara "
|
||||
"üstveri atamak, depolama konteynerleri ve nesneleri oluşturmak ve OpenStack "
|
||||
"bulutunuzdaki diğer eylemleri tamamlamak için OpenStack API'lerini kullanın."
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"OpenStack bulutunuzda kaynak yaratan ve yöneten Python otomasyon betik "
|
||||
"dosyalarını yazmak için bu SDK'yi kullanın. SDK, doğrudan Python çağrıları "
|
||||
"yapmak yerine, Python nesneleri üzerinde çağrılar yaparak Python'da "
|
||||
"otomasyon görevleri gerçekleştirmenize olanak tanıyan OpenStack API'sine "
|
||||
"Python bağları uygular. Tüm OpenStack komut satırı araçları Python SDK "
|
||||
"kullanılarak gerçekleştirilmiştir. *OpenStack Son Kullanıcı Kılavuzu* nda "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>` __ "
|
||||
"ya bakın."
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"API istekleri gönderirken, jetonunuzu ``X-Auth-Token`` başlığına dahil edin. "
|
||||
"Eğer birden fazla OpenStack servisine erişiyorsanız, her biri için bir jeton "
|
||||
"almanız gerekmektedir. Bir jeton zaman aşımına uğramadan önce belli bir süre "
|
||||
"için geçerlidir. Bir jeton ayrıca başka sebeplerle de geçersiz olabilir. "
|
||||
"Örneğin, bir kullanıcının rolü değişirse bu kullanıcı için için önceden "
|
||||
"varolan jetonlar geçerli olmayacaktır."
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "*PROJE* proje ismidir."
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"Her proje için istemciyi ayrı olarak kurmalısınız ancak ``python-"
|
||||
"openstackclient`` birden fazla projeyi kapsar."
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`Uygulama Kataloğu API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr ""
|
||||
"`Yedekleme API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(mikrosürümler)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`Blok Depolama API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Blok Depolama API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (mikrosürümler)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr ""
|
||||
"`Kümeleme API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`Hesaplama API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`Konteyner Altyapı Yönetimi API <https://developer.openstack.org/api-ref/"
|
||||
"container-infrastructure-management/>`__ (mikrosürümler)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`Veri İşleme v1.1 <https://developer.openstack.org/api-ref/data-processing/"
|
||||
">`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`Veri Koruma Orkestrasyonu v1 <https://developer.openstack.org/api-ref/data-"
|
||||
"protection-orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`Veritabanı Servisi API v1.0 <https://developer.openstack.org/api-ref/"
|
||||
"database/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`Alan Adı Sunucusu (DNS) API v2 <https://developer.openstack.org/api-ref/dns/"
|
||||
">`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`Kimlik API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`Kimlik API v3 uzantıları <https://developer.openstack.org/api-ref/identity/"
|
||||
"v3-ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr ""
|
||||
"`Imaj servisi API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`Yük Dengeleyici API v2 <https://developer.openstack.org/api-ref/load-"
|
||||
"balancer/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV Orkestrasyon API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`Orkestrasyon API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`Arama API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "Parola (gerekli)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "Karakter dizisi"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "Kullanıcı adı (gerekli)"
|
@ -1,562 +0,0 @@
|
||||
# OpenStack Infra <zanata@openstack.org>, 2015. #zanata
|
||||
# Wenyan Wang <woshishui419@126.com>, 2016. #zanata
|
||||
# ZHIYUAN SU <suzhiyuan@inspur.com>, 2016. #zanata
|
||||
# hanchao <han.chaoB@h3c.com>, 2016. #zanata
|
||||
# howard lee <howard@mail.ustc.edu.cn>, 2016. #zanata
|
||||
# xiezhongtian <zhongtianemail@gmail.com>, 2016. #zanata
|
||||
# zzxwill <zzxwill@gmail.com>, 2016. #zanata
|
||||
# Alex Eng <loones1595@gmail.com>, 2017. #zanata
|
||||
# Bin <liubin@glab.cn>, 2017. #zanata
|
||||
# vuuv <froms2008@gmail.com>, 2017. #zanata
|
||||
# yan <yyyan123@outlook.com>, 2019. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenStack API Documentation 2013.2.1.dev4251\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-24 09:50+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-07-10 04:44+0000\n"
|
||||
"Last-Translator: yan <yyyan123@outlook.com>\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0\n"
|
||||
"X-Generator: Zanata 4.3.3\n"
|
||||
"Language-Team: Chinese (China)\n"
|
||||
|
||||
msgid "**OpenStack Python Software Development Kit (SDK)**"
|
||||
msgstr "**OpenStack Python软件开发工具包(SDK)**"
|
||||
|
||||
msgid "**OpenStack command-line client**"
|
||||
msgstr "**OpenStack命令行客户端**"
|
||||
|
||||
msgid "**REST clients**"
|
||||
msgstr "**REST客户端**"
|
||||
|
||||
msgid "**cURL**"
|
||||
msgstr "**cURL**"
|
||||
|
||||
msgid "*Project Domain* (optional)"
|
||||
msgstr "*项目域*(可选)"
|
||||
|
||||
msgid "*Project ID* (optional)"
|
||||
msgstr "*项目ID*(可选)"
|
||||
|
||||
msgid "*Project Name* (optional)"
|
||||
msgstr "*项目名*(可选)"
|
||||
|
||||
msgid "*User Domain* (required)"
|
||||
msgstr "*用户域*(必需有)"
|
||||
|
||||
msgid ""
|
||||
"A command-line tool that lets you send HTTP requests and receive responses. "
|
||||
"See the section called :ref:`openstack_API_quick_guide`."
|
||||
msgstr ""
|
||||
"命令行工具可以让你发送HTTP请求和接收响应。请参考`openstack_API_quick_guide`部"
|
||||
"分。"
|
||||
|
||||
msgid "API quick-start examples"
|
||||
msgstr "API 快速入门示例"
|
||||
|
||||
msgid ""
|
||||
"After you authenticate through Identity, you can use the other OpenStack "
|
||||
"APIs to create and manage resources in your OpenStack cloud. You can launch "
|
||||
"instances from images and assign metadata to instances through the Compute "
|
||||
"API or the **openstack** command-line client."
|
||||
msgstr ""
|
||||
"当你通过认证服务认证后,你可以使用其他的 OpenStack API 来创建和管理你"
|
||||
"OpenStack云环境下的资源。你可以通过计算服务API或者 **OpenStack** 命令行客户端"
|
||||
"启动用镜像创建的实例以及为云主机配置参数。"
|
||||
|
||||
msgid "Authenticate"
|
||||
msgstr "认证"
|
||||
|
||||
msgid "Authentication and API request workflow"
|
||||
msgstr "认证和 API 请求工作流程"
|
||||
|
||||
msgid ""
|
||||
"Before you can issue client commands, you must download and source the "
|
||||
"``openrc`` file to set environment variables."
|
||||
msgstr ""
|
||||
"在执行客户端命令之前,你必须下载并使用source命令执行``openrc``文件来设置环境"
|
||||
"变量。"
|
||||
|
||||
msgid ""
|
||||
"Credentials are usually a combination of your user name and password, and "
|
||||
"optionally, the name or ID of the project of your cloud. Ask your cloud "
|
||||
"administrator for your user name, password, and project so that you can "
|
||||
"generate authentication tokens. Alternatively, you can supply a token rather "
|
||||
"than a user name and password."
|
||||
msgstr ""
|
||||
"证书通常是您的用户名和密码的组合,或者是您的云环境中项目的名称或ID。从你的云"
|
||||
"管理员那里获得你的用户名,密码和项目信息以便于生成认证令牌。相应地,你可以使"
|
||||
"用这个令牌来代替用户名和密码进行认证操作。"
|
||||
|
||||
msgid "Current API versions"
|
||||
msgstr "当前API 版本"
|
||||
|
||||
msgid "Deprecated API versions"
|
||||
msgstr "不支持的API版本"
|
||||
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list images:"
|
||||
msgstr "从令牌中导出$OS_PROJECT_ID,然后基于计算服务API来列出所有镜像"
|
||||
|
||||
msgid ""
|
||||
"Export the $OS_PROJECT_ID from the token call, and then use the Compute API "
|
||||
"to list servers:"
|
||||
msgstr "从令牌中导出$OS_PROJECT_ID,然后基于计算服务API来列出所有服务器"
|
||||
|
||||
msgid ""
|
||||
"Export the project name to the ``OS_PROJECT_NAME`` environment variable. For "
|
||||
"example:"
|
||||
msgstr "将项目名传递给环境变量``OS_PROJECT_NAME``,例如:"
|
||||
|
||||
msgid ""
|
||||
"Export the token ID to the ``OS_TOKEN`` environment variable. For example:"
|
||||
msgstr "将token ID传递给环境变量“OS_TOKEN”,例如:"
|
||||
|
||||
msgid ""
|
||||
"First, export your project name to the ``OS_PROJECT_NAME`` environment "
|
||||
"variable, your project domain name to the ``OS_PROJECT_DOMAIN_NAME`` "
|
||||
"environment variable, your user name to the ``OS_USERNAME`` environment "
|
||||
"variable, your password to the ``OS_PASSWORD`` environment variable and your "
|
||||
"user domain name to the ``OS_USER_DOMAIN_NAME`` environment variable."
|
||||
msgstr ""
|
||||
"首先,将你的项目名传递给环境变量``OS_TENANT_NAME``,你的项目域名传递给环境变"
|
||||
"量``OS_PROJECT_DOMAIN_NAME``,你的用户名传递给环境变量``OS_USERNAME``,你的密"
|
||||
"码传递给环境变量``OS_PASSWORD``,同时你的用户域名传递给环境变量"
|
||||
"``OS_USER_DOMAIN_NAME``。"
|
||||
|
||||
msgid ""
|
||||
"For complete information about the OpenStack clients, including how to "
|
||||
"source the ``openrc`` file, see `OpenStack End User Guide <https://docs."
|
||||
"openstack.org/user-guide/>`__, `OpenStack Administrator Guide <https://docs."
|
||||
"openstack.org/admin-guide/>`__, and `OpenStack Command-Line Interface "
|
||||
"Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"获取更多关于OpenStack客户端的信息,包括如何source ``openrc``文件,请看"
|
||||
"`OpenStack 终端用户手册 <https://docs.openstack.org/user-guide/>`,"
|
||||
"`OpenStack 管理员手册 <https://docs.openstack.org/admin-guide/>`和`OpenStack "
|
||||
"命令行接口参考 <https://docs.openstack.org/cli-reference/>`。"
|
||||
|
||||
msgid "For example, install the ``openstack`` client:"
|
||||
msgstr "例如,安装``openstack``客户端:"
|
||||
|
||||
msgid ""
|
||||
"For information about the command-line clients, see `OpenStack Command-Line "
|
||||
"Interface Reference <https://docs.openstack.org/cli-reference/>`__."
|
||||
msgstr ""
|
||||
"获取更多关于命令行客户端的信息,请看`OpenStack命令行接口参考文献: <https://"
|
||||
"docs.openstack.org/cli-reference/>`__。"
|
||||
|
||||
msgid ""
|
||||
"For scripting work and simple requests, you can use a command-line client "
|
||||
"like the ``openstack-client`` client. This client enables you to use the "
|
||||
"Identity, Compute, Block Storage, and Object Storage APIs through a command-"
|
||||
"line interface. Also, each OpenStack project has a related client project "
|
||||
"that includes Python API bindings and a command-line interface (CLI)."
|
||||
msgstr ""
|
||||
"对于脚本操作和简单的请求,你可以使用像“openstack-client”这样的客户端命令行,"
|
||||
"这个客户端能让你通过命令行接口去使用认证,计算,块存储,对象存储API。同时每个"
|
||||
"openstack项目都会有一个包含Python API绑定和命令行接口(CLI)的相关的客户端项"
|
||||
"目。"
|
||||
|
||||
msgid "If the Unauthorized (401) error occurs, request another token."
|
||||
msgstr "如果Unauthorized (401)错误出现, 重新申请一个令牌。"
|
||||
|
||||
msgid ""
|
||||
"If the request succeeds, it returns the ``Created (201)`` response code "
|
||||
"along with the token as a value in the ``X-Subject-Token`` response header. "
|
||||
"The header is followed by a response body that has an object of type "
|
||||
"``token`` which has the token expiration date and time in the form ``"
|
||||
"\"expires_at\":\"datetime\"`` along with other attributes."
|
||||
msgstr ""
|
||||
"如果请求成功是,将会返回``Created (201)``响应码,同时在``X-Subject-Token``响"
|
||||
"应头中包含着token值。该请求头伴随着一个响应体,包含一个``token``类型的对象,"
|
||||
"该对象包含token过期日期和时间,以``\"expires_at\":\"datetime\"``的形式,还包"
|
||||
"含其它属性。"
|
||||
|
||||
msgid ""
|
||||
"In a typical OpenStack deployment that runs Identity, you can specify your "
|
||||
"project name, and user name and password credentials to authenticate."
|
||||
msgstr ""
|
||||
"在一个运行着认证服务的典型OpenStack环境中,你可以指定你的项目名,用户名和密码"
|
||||
"进行身份验证。"
|
||||
|
||||
msgid ""
|
||||
"In the above request, the query string ``nocatalog`` is used as you just "
|
||||
"want to get a token and do not want the service catalog (if it is available "
|
||||
"for the user) cluttering the output. If a user wants to get the service "
|
||||
"catalog, this query string need not be appended to the URL."
|
||||
msgstr ""
|
||||
"在上面的请求中,``nocatalog``请求字符串用于当你想要获取一个token,同时并不想"
|
||||
"要服务目录(如果对于当前用户来说可用)使输出结果混乱时。如果一个用户项目要获"
|
||||
"取服务目录,该请求字符串不需要添加到URL中。"
|
||||
|
||||
msgid "Install or update a client package:"
|
||||
msgstr "安装或者更新一个客户端:"
|
||||
|
||||
msgid "Install the clients"
|
||||
msgstr "安装客户端"
|
||||
|
||||
msgid "Launch an instance"
|
||||
msgstr "创建云主机"
|
||||
|
||||
msgid "OpenStack API Documentation"
|
||||
msgstr "OpenStack API文档"
|
||||
|
||||
msgid "OpenStack APIs"
|
||||
msgstr "OpenStack APIs"
|
||||
|
||||
msgid "OpenStack command-line clients"
|
||||
msgstr "OpenStack 命令行客户端"
|
||||
|
||||
msgid "Parameter"
|
||||
msgstr "参数"
|
||||
|
||||
msgid ""
|
||||
"Request an authentication token from the Identity endpoint that your cloud "
|
||||
"administrator gave you. Send a payload of credentials in the request as "
|
||||
"shown in :ref:`authenticate`. If the request succeeds, the server returns an "
|
||||
"authentication token."
|
||||
msgstr ""
|
||||
"从云管理员提供的认证服务接入点请求一个认证令牌,以“ref:authenticate”的形式发"
|
||||
"送一个有效载荷的请求,如果请求成功,服务器将返回一个认证令牌。"
|
||||
|
||||
msgid "Send API requests"
|
||||
msgstr "发送 API 请求"
|
||||
|
||||
msgid ""
|
||||
"Send API requests and include the token in the ``X-Auth-Token`` header. "
|
||||
"Continue to send API requests with that token until the service completes "
|
||||
"the request or the Unauthorized (401) error occurs."
|
||||
msgstr ""
|
||||
"发送API请求时,令牌信息包含在“X-Auth-Token”的包头中,使用该令牌发送请求,直到"
|
||||
"请求的服务完成或者Unauthorized (401)错误出现。"
|
||||
|
||||
msgid "Supported API versions"
|
||||
msgstr "支持的API版本"
|
||||
|
||||
msgid ""
|
||||
"The Block Storage API v3 is functionally identical to the Block Storage API "
|
||||
"v2. Subsequent API v3 microversions, such as v3.1, differ from API v2."
|
||||
msgstr ""
|
||||
"块存储API v3在功能上等同于块存储API v2。随后的API v3微版本与API v2不同,比如"
|
||||
"v3.1。"
|
||||
|
||||
msgid "The Domain of the project. This is a required part of the scope object."
|
||||
msgstr "该项目的域是scope对象的必需部分。"
|
||||
|
||||
msgid "The Domain of the user."
|
||||
msgstr "用户的域"
|
||||
|
||||
msgid ""
|
||||
"The OpenStack project provides a command-line client that enables you to "
|
||||
"access APIs through easy-to-use commands. See the section called :ref:"
|
||||
"`client-intro`."
|
||||
msgstr ""
|
||||
"OpenStack工程提供了一个能够让你通过简单命令去访问APIs的命令行客户端,请参考"
|
||||
"`client-intro`。"
|
||||
|
||||
msgid ""
|
||||
"The Shared File Systems API v1 is functionally identical to the Shared File "
|
||||
"Systems API v2. Subsequent API v2 microversions, such as v2.1, differ from "
|
||||
"API v1."
|
||||
msgstr ""
|
||||
"共享文件系统API v1版本与 v2版本在功能上是一致的。随后的API v2微版本,例如"
|
||||
"v2.1,与API v1是不同的。"
|
||||
|
||||
msgid ""
|
||||
"The example below uses an endpoint from an installation of Ocata by "
|
||||
"following the installation guide. However, you can also use ``$OS_AUTH_URL`` "
|
||||
"as an environment variable as needed to change the URL."
|
||||
msgstr ""
|
||||
"下面例子使用了遵循安装手册安装Ocata。但是,你也可以使用``$OS_AUTH_URL``作为一"
|
||||
"个环境变量,如果需要改变该URL。"
|
||||
|
||||
msgid ""
|
||||
"The examples in this section use cURL commands. For information about cURL, "
|
||||
"see http://curl.haxx.se/. For information about the OpenStack APIs, see :ref:"
|
||||
"`current_api_versions`."
|
||||
msgstr ""
|
||||
"该部分的实例使用了cURL命令。关于cURL的信息,请参考http://curl.haxx.se/。关于"
|
||||
"OpenStack APIs的信息,请参考 :ref:`current_api_versions`。"
|
||||
|
||||
msgid "The following example shows a successful response:"
|
||||
msgstr "下面的例子展示了一个成功的响应:"
|
||||
|
||||
msgid "The password for the user."
|
||||
msgstr "该用户的密码。"
|
||||
|
||||
msgid "The payload of credentials to authenticate contains these parameters:"
|
||||
msgstr " 身份验证服务包含这些参数:"
|
||||
|
||||
msgid ""
|
||||
"The project ID. Both the *project ID* and *Project Name* are optional. But "
|
||||
"one of them is required along with the *Project Domain*. They are wrapped "
|
||||
"under a scope object. If you do not know the project name or ID, send a "
|
||||
"request without any scope object."
|
||||
msgstr ""
|
||||
"项目ID。*项目ID*和*项目名*都是可选的。但是伴随着*项目域*这两个属性其中之一是"
|
||||
"必须有的。这两个属性包含在scope对象下。如果你不知道项目的名称或者ID,发送一个"
|
||||
"不包含任何scope对象的请求。"
|
||||
|
||||
msgid ""
|
||||
"The project name. Both the *Project ID* and *Project Name* are optional."
|
||||
msgstr "项目名。*项目ID*和*项目名*都是可选的。"
|
||||
|
||||
msgid ""
|
||||
"The token expires every hour by default, though it can be configured "
|
||||
"differently - see the `expiration <https://docs.openstack.org/keystone/"
|
||||
"latest/configuration/config-options.html#token.expiration>`__ option in the "
|
||||
"the *Identity Service Configuration Guide*."
|
||||
msgstr ""
|
||||
"默认情况下token的有效时间为1小时,也可以通过配置设置为其他值。可参考"
|
||||
"`<https://docs.openstack.org/keystone/latest/configuration/config-options."
|
||||
"html#token.expiration>`__ *身份识别服务配置指南*中过期这一章节中相关的配置选"
|
||||
"项"
|
||||
|
||||
msgid ""
|
||||
"The user name. If you do not provide a user name and password, you must "
|
||||
"provide a token."
|
||||
msgstr "用户名。如果您不提供用户名和密码,那么必须提供一个令牌。"
|
||||
|
||||
msgid "Then, run this cURL command to request a token:"
|
||||
msgstr "然后,运行cURL命令去请求一个token。"
|
||||
|
||||
msgid ""
|
||||
"Then, use the Compute API to list flavors, substituting the Compute API "
|
||||
"endpoint with one containing your project ID below:"
|
||||
msgstr ""
|
||||
"之后,可以使用计算服务API来列出所有的云主机类型,使用如下所示的包含在你项目ID"
|
||||
"中的flavor来替换计算API端点"
|
||||
|
||||
msgid ""
|
||||
"This section shows how to make some basic Compute API calls. For a complete "
|
||||
"list of Compute API calls, see `Compute API <https://developer.openstack.org/"
|
||||
"api-ref/compute/>`__."
|
||||
msgstr ""
|
||||
"这部分内容展示了如何调用一些基本的计算服务API,对于一个完整的计算API函数列"
|
||||
"表,请见`Compute API <https://developer.openstack.org/api-ref/compute/>`__。"
|
||||
|
||||
msgid ""
|
||||
"To authenticate access to OpenStack services, you must first issue an "
|
||||
"authentication request with a payload of credentials to OpenStack Identity "
|
||||
"to get an authentication token."
|
||||
msgstr ""
|
||||
"为了认证对OpenStack服务的访问,你首先需要向OpenStack认证服务发出携带证书信息"
|
||||
"的认证请求以获得认证令牌。"
|
||||
|
||||
msgid "To begin sending API requests, use one of the following methods:"
|
||||
msgstr "使用如下的方法之一发送 API 请求:"
|
||||
|
||||
msgid "To launch an instance, note the IDs of your desired image and flavor."
|
||||
msgstr "启动虚拟机实例前,记录下您所需的镜像和云主机类型的 ID。"
|
||||
|
||||
msgid ""
|
||||
"To launch instances, you must choose a name, an image, and a flavor for your "
|
||||
"instance."
|
||||
msgstr "启动虚拟机实例前,需要为其选择名称,镜像和云主机类型。"
|
||||
|
||||
msgid ""
|
||||
"To launch the ``my_instance`` instance, run the ``openstack server create`` "
|
||||
"command with the image and flavor IDs and the server name:"
|
||||
msgstr ""
|
||||
"启动 ``my_instance`` 云主机,带着镜像、类型ID和服务器名称参数运行 "
|
||||
"``openstack server create`` 命令:"
|
||||
|
||||
msgid ""
|
||||
"To list available images, call the Compute API through the ``openstack`` "
|
||||
"client:"
|
||||
msgstr "通过``openstack``客户端调用计算服务API列出可用的镜像:"
|
||||
|
||||
msgid "To list flavors, run this command:"
|
||||
msgstr "运行如下命令以列出云主机类型:"
|
||||
|
||||
msgid "To remove the ``openstack`` client, run this command:"
|
||||
msgstr "运行如下命令移除``openstack``客户端:"
|
||||
|
||||
msgid "To update the ``openstack`` client, run this command:"
|
||||
msgstr "运行如下命令更新``openstack``客户端:"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
msgid ""
|
||||
"Use the OpenStack APIs to launch server instances, create images, assign "
|
||||
"metadata to instances and images, create storage containers and objects, and "
|
||||
"complete other actions in your OpenStack cloud."
|
||||
msgstr ""
|
||||
"在你的OpenStack云中,使用OpenStack API来启动服务器云主机,创建镜像、给实例和"
|
||||
"镜像分配元数据、创建存储容器和对象以及完成其他相关的动作。"
|
||||
|
||||
msgid ""
|
||||
"Use this SDK to write Python automation scripts that create and manage "
|
||||
"resources in your OpenStack cloud. The SDK implements Python bindings to the "
|
||||
"OpenStack API, which enables you to perform automation tasks in Python by "
|
||||
"making calls on Python objects rather than making REST calls directly. All "
|
||||
"OpenStack command-line tools are implemented by using the Python SDK. See "
|
||||
"`OpenStack Python SDK <https://docs.openstack.org/user-guide/sdk.html>`__ in "
|
||||
"the *OpenStack End User Guide*."
|
||||
msgstr ""
|
||||
"你可以使用SDK编写自动化Python脚本,用于创建和管理你的Openstack云环境中的资"
|
||||
"源。SDK实现了Python绑定OpenStack API,这能够让你使用Python实现自动化任务通过"
|
||||
"调用Python对象,而不用直接调用REST接口。所有的OpenStack命令行工具都可以使用"
|
||||
"Python SDK实现。在*OpenStack Python SDK *中查看`OpenStack Python SDK "
|
||||
"<https://docs.openstack.org/user-guide/sdk.html>`。"
|
||||
|
||||
msgid ""
|
||||
"When you send API requests, you include the token in the ``X-Auth-Token`` "
|
||||
"header. If you access multiple OpenStack services, you must get a token for "
|
||||
"each service. A token is valid for a limited time before it expires. A token "
|
||||
"can also become invalid for other reasons. For example, if the roles for a "
|
||||
"user change, existing tokens for that user are no longer valid."
|
||||
msgstr ""
|
||||
"当你发送API请求时,你需要将令牌信息包含在“X-Auth-Token”的消息头中。如果你要访"
|
||||
"问多个OpenStack的服务,你必须为每个服务获取一个令牌。令牌的有效性是有时间限制"
|
||||
"的。当然,令牌也可能因为其它原因而失效。例如,如果用户的角色发生了变化,该用"
|
||||
"户当前存在的令牌也就会失效。"
|
||||
|
||||
msgid "Where *PROJECT* is the project name."
|
||||
msgstr "*PROJECT*是一个工程名。"
|
||||
|
||||
msgid ""
|
||||
"You must install the client for each project separately, but the ``python-"
|
||||
"openstackclient`` covers multiple projects."
|
||||
msgstr ""
|
||||
"你必须为每个工程单独安装客户端,但是``python-openstackclient``可以覆盖多个工"
|
||||
"程。"
|
||||
|
||||
msgid ""
|
||||
"`Application Catalog API v1 <https://developer.openstack.org/api-ref/"
|
||||
"application-catalog/v1/>`__"
|
||||
msgstr ""
|
||||
"`应用目录API v1 <https://developer.openstack.org/api-ref/application-catalog/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid "`Backup API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
msgstr "`备份API v1 <https://developer.openstack.org/api-ref/backup/v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Bare Metal API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`裸机API v1 <https://developer.openstack.org/api-ref/baremetal/>`__ (微版本)"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v2 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v2/>`__"
|
||||
msgstr ""
|
||||
"`块存储API v2 <https://developer.openstack.org/api-ref/block-storage/v2/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Block Storage API v3 <https://developer.openstack.org/api-ref/block-storage/"
|
||||
"v3/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`块存储API v3 <https://developer.openstack.org/api-ref/block-storage/v3/"
|
||||
">`__(微版本)"
|
||||
|
||||
msgid ""
|
||||
"`Clustering API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
msgstr "`集群API v1 <https://developer.openstack.org/api-ref/clustering/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Compute API <https://developer.openstack.org/api-ref/compute/>`__ "
|
||||
"(microversions)"
|
||||
msgstr ""
|
||||
"`计算服务API v1 <https://developer.openstack.org/api-ref/compute/>`__(微版"
|
||||
"本)"
|
||||
|
||||
msgid ""
|
||||
"`Container Infrastructure Management API <https://developer.openstack.org/"
|
||||
"api-ref/container-infrastructure-management/>`__ (microversions)"
|
||||
msgstr ""
|
||||
"`容器基础设施管理API <https://developer.openstack.org/api-ref/container-"
|
||||
"infrastructure-management/>`__(微版本)"
|
||||
|
||||
msgid ""
|
||||
"`Data Processing v1.1 <https://developer.openstack.org/api-ref/data-"
|
||||
"processing/>`__"
|
||||
msgstr ""
|
||||
"`数据处理 v1.1 <https://developer.openstack.org/api-ref/data-processing/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Data Protection Orchestration v1 <https://developer.openstack.org/api-ref/"
|
||||
"data-protection-orchestration/>`__"
|
||||
msgstr ""
|
||||
"`数据保护编配 v1 <https://developer.openstack.org/api-ref/data-protection-"
|
||||
"orchestration/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Database Service API v1.0 <https://developer.openstack.org/api-ref/database/"
|
||||
">`__"
|
||||
msgstr ""
|
||||
"`数据库服务API v1.0 <https://developer.openstack.org/api-ref/database/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Domain Name Server (DNS) API v2 <https://developer.openstack.org/api-ref/"
|
||||
"dns/>`__"
|
||||
msgstr ""
|
||||
"`域名解析服务(DNS) API v2 <https://developer.openstack.org/api-ref/dns/>`__"
|
||||
|
||||
msgid "`EC2 API Service <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
msgstr "`EC2 API服务 <https://developer.openstack.org/api-ref/ec2-api/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v2.0 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v2-ext>`__"
|
||||
msgstr ""
|
||||
"`身份认证API v2.0 扩展 <https://developer.openstack.org/api-ref/identity/v2-"
|
||||
"ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
msgstr ""
|
||||
"`身份认证API v3 <https://developer.openstack.org/api-ref/identity/v3>`__"
|
||||
|
||||
msgid ""
|
||||
"`Identity API v3 extensions <https://developer.openstack.org/api-ref/"
|
||||
"identity/v3-ext>`__"
|
||||
msgstr ""
|
||||
"`身份认证API v3扩展 <https://developer.openstack.org/api-ref/identity/v3-"
|
||||
"ext>`__"
|
||||
|
||||
msgid ""
|
||||
"`Image service API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
msgstr "`镜像服务API v2 <https://developer.openstack.org/api-ref/image/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`Load Balancer API v2 <https://developer.openstack.org/api-ref/load-balancer/"
|
||||
"v2>`__"
|
||||
msgstr ""
|
||||
"`负载均衡API v2 <https://developer.openstack.org/api-ref/load-balancer/v2>`__"
|
||||
|
||||
msgid ""
|
||||
"`NFV Orchestration API v1.0 <https://developer.openstack.org/api-ref/nfv-"
|
||||
"orchestration/v1/>`__"
|
||||
msgstr ""
|
||||
"`NFV编配API v1.0 <https://developer.openstack.org/api-ref/nfv-orchestration/"
|
||||
"v1/>`__"
|
||||
|
||||
msgid ""
|
||||
"`Orchestration API v1 <https://developer.openstack.org/api-ref/orchestration/"
|
||||
"v1/>`__"
|
||||
msgstr ""
|
||||
"`编配API v1 <https://developer.openstack.org/api-ref/orchestration/v1/>`__"
|
||||
|
||||
msgid "`Search API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
msgstr "`搜 API v1 <https://developer.openstack.org/api-ref/search>`__"
|
||||
|
||||
msgid "password (required)"
|
||||
msgstr "密码 (必需有)"
|
||||
|
||||
msgid "string"
|
||||
msgstr "字符串"
|
||||
|
||||
msgid "username (required)"
|
||||
msgstr "用户名 (必需有)"
|
@ -1,7 +0,0 @@
|
||||
Important note about this directory
|
||||
===================================
|
||||
|
||||
Because this directory is synced from openstack-manuals, make any changes in
|
||||
openstack-manuals/doc/common. After changes to the synced files merge to
|
||||
openstack-manuals/doc/common, a patch is automatically proposed for this
|
||||
directory.
|
@ -1,243 +0,0 @@
|
||||
.. ## WARNING ##########################################################
|
||||
.. This file is synced from openstack/openstack-manuals repository to
|
||||
.. other related repositories. If you need to make changes to this file,
|
||||
.. make the changes in openstack-manuals. After any change merged to,
|
||||
.. openstack-manuals, automatically a patch for others will be proposed.
|
||||
.. #####################################################################
|
||||
|
||||
=================
|
||||
Community support
|
||||
=================
|
||||
|
||||
The following resources are available to help you run and use OpenStack.
|
||||
The OpenStack community constantly improves and adds to the main
|
||||
features of OpenStack, but if you have any questions, do not hesitate to
|
||||
ask. Use the following resources to get OpenStack support and
|
||||
troubleshoot your installations.
|
||||
|
||||
Documentation
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
For the available OpenStack documentation, see
|
||||
`docs.openstack.org <https://docs.openstack.org>`__.
|
||||
|
||||
To provide feedback on documentation, join and use the
|
||||
openstack-docs@lists.openstack.org mailing list at `OpenStack
|
||||
Documentation Mailing
|
||||
List <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-docs>`__,
|
||||
join our IRC channel ``#openstack-doc`` on the freenode IRC network,
|
||||
or `report a
|
||||
bug <https://bugs.launchpad.net/openstack-manuals/+filebug>`__.
|
||||
|
||||
The following books explain how to install an OpenStack cloud and its
|
||||
associated components:
|
||||
|
||||
* `Rocky Installation Guides <https://docs.openstack.org/rocky/install/>`_
|
||||
|
||||
The following books explain how to configure and run an OpenStack cloud:
|
||||
|
||||
* `Architecture Design Guide <https://docs.openstack.org/arch-design/>`_
|
||||
|
||||
* `Rocky Administrator Guides <https://docs.openstack.org/rocky/admin/>`_
|
||||
|
||||
* `Rocky Configuration Guides <https://docs.openstack.org/rocky/configuration/>`_
|
||||
|
||||
* `Rocky Networking Guide <https://docs.openstack.org/neutron/rocky/admin/>`_
|
||||
|
||||
* `High Availability Guide <https://docs.openstack.org/ha-guide/>`_
|
||||
|
||||
* `Security Guide <https://docs.openstack.org/security-guide/>`_
|
||||
|
||||
* `Virtual Machine Image Guide <https://docs.openstack.org/image-guide/>`_
|
||||
|
||||
The following books explain how to use the OpenStack Dashboard and
|
||||
command-line clients:
|
||||
|
||||
* `End User Guides <https://docs.openstack.org/rocky/user/>`__
|
||||
|
||||
* `Command-Line Interface Reference
|
||||
<https://docs.openstack.org/python-openstackclient/latest/>`__
|
||||
|
||||
The following documentation provides reference and guidance information
|
||||
for the OpenStack APIs:
|
||||
|
||||
* `API Guide <https://developer.openstack.org/api-guide/quick-start/>`__
|
||||
|
||||
The following guide provides how to contribute to OpenStack documentation:
|
||||
|
||||
* `Documentation Contributor Guide <https://docs.openstack.org/doc-contrib-guide/index.html>`__
|
||||
|
||||
ask.openstack.org
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
During the set up or testing of OpenStack, you might have questions
|
||||
about how a specific task is completed or be in a situation where a
|
||||
feature does not work correctly. Use the
|
||||
`ask.openstack.org <https://ask.openstack.org>`__ site to ask questions
|
||||
and get answers. When you visit the `Ask OpenStack
|
||||
<https://ask.openstack.org>`_ site, scan
|
||||
the recently asked questions to see whether your question has already
|
||||
been answered. If not, ask a new question. Be sure to give a clear,
|
||||
concise summary in the title and provide as much detail as possible in
|
||||
the description. Paste in your command output or stack traces, links to
|
||||
screen shots, and any other information which might be useful.
|
||||
|
||||
OpenStack mailing lists
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
A great way to get answers and insights is to post your question or
|
||||
problematic scenario to the OpenStack mailing list. You can learn from
|
||||
and help others who might have similar issues. To subscribe or view the
|
||||
archives, go to the `general OpenStack mailing list
|
||||
<http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack>`_. If you are
|
||||
interested in the other mailing lists for specific projects or development,
|
||||
refer to `Mailing Lists <https://wiki.openstack.org/wiki/Mailing_Lists>`__.
|
||||
|
||||
The OpenStack wiki
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The `OpenStack wiki <https://wiki.openstack.org/>`__ contains a broad
|
||||
range of topics but some of the information can be difficult to find or
|
||||
is a few pages deep. Fortunately, the wiki search feature enables you to
|
||||
search by title or content. If you search for specific information, such
|
||||
as about networking or OpenStack Compute, you can find a large amount
|
||||
of relevant material. More is being added all the time, so be sure to
|
||||
check back often. You can find the search box in the upper-right corner
|
||||
of any OpenStack wiki page.
|
||||
|
||||
The Launchpad Bugs area
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The OpenStack community values your set up and testing efforts and wants
|
||||
your feedback. To log a bug, you must sign up for a Launchpad account at
|
||||
https://launchpad.net/+login. You can view existing bugs and report bugs
|
||||
in the Launchpad Bugs area. Use the search feature to determine whether
|
||||
the bug has already been reported or already been fixed. If it still
|
||||
seems like your bug is unreported, fill out a bug report.
|
||||
|
||||
Some tips:
|
||||
|
||||
* Give a clear, concise summary.
|
||||
|
||||
* Provide as much detail as possible in the description. Paste in your
|
||||
command output or stack traces, links to screen shots, and any other
|
||||
information which might be useful.
|
||||
|
||||
* Be sure to include the software and package versions that you are
|
||||
using, especially if you are using a development branch, such as,
|
||||
``"Kilo release" vs git commit bc79c3ecc55929bac585d04a03475b72e06a3208``.
|
||||
|
||||
* Any deployment-specific information is helpful, such as whether you
|
||||
are using Ubuntu 14.04 or are performing a multi-node installation.
|
||||
|
||||
The following Launchpad Bugs areas are available:
|
||||
|
||||
* `Bugs: OpenStack Block Storage
|
||||
(cinder) <https://bugs.launchpad.net/cinder>`__
|
||||
|
||||
* `Bugs: OpenStack Compute (nova) <https://bugs.launchpad.net/nova>`__
|
||||
|
||||
* `Bugs: OpenStack Dashboard
|
||||
(horizon) <https://bugs.launchpad.net/horizon>`__
|
||||
|
||||
* `Bugs: OpenStack Identity
|
||||
(keystone) <https://bugs.launchpad.net/keystone>`__
|
||||
|
||||
* `Bugs: OpenStack Image service
|
||||
(glance) <https://bugs.launchpad.net/glance>`__
|
||||
|
||||
* `Bugs: OpenStack Networking
|
||||
(neutron) <https://bugs.launchpad.net/neutron>`__
|
||||
|
||||
* `Bugs: OpenStack Object Storage
|
||||
(swift) <https://bugs.launchpad.net/swift>`__
|
||||
|
||||
* `Bugs: Application catalog (murano) <https://bugs.launchpad.net/murano>`__
|
||||
|
||||
* `Bugs: Bare metal service (ironic) <https://bugs.launchpad.net/ironic>`__
|
||||
|
||||
* `Bugs: Clustering service (senlin) <https://bugs.launchpad.net/senlin>`__
|
||||
|
||||
* `Bugs: Container Infrastructure Management service (magnum) <https://bugs.launchpad.net/magnum>`__
|
||||
|
||||
* `Bugs: Data processing service
|
||||
(sahara) <https://bugs.launchpad.net/sahara>`__
|
||||
|
||||
* `Bugs: Database service (trove) <https://bugs.launchpad.net/trove>`__
|
||||
|
||||
* `Bugs: Deployment service (fuel) <https://bugs.launchpad.net/fuel>`__
|
||||
|
||||
* `Bugs: DNS service (designate) <https://bugs.launchpad.net/designate>`__
|
||||
|
||||
* `Bugs: Key Manager Service (barbican) <https://bugs.launchpad.net/barbican>`__
|
||||
|
||||
* `Bugs: Monitoring (monasca) <https://bugs.launchpad.net/monasca>`__
|
||||
|
||||
* `Bugs: Orchestration (heat) <https://bugs.launchpad.net/heat>`__
|
||||
|
||||
* `Bugs: Rating (cloudkitty) <https://bugs.launchpad.net/cloudkitty>`__
|
||||
|
||||
* `Bugs: Shared file systems (manila) <https://bugs.launchpad.net/manila>`__
|
||||
|
||||
* `Bugs: Telemetry
|
||||
(ceilometer) <https://bugs.launchpad.net/ceilometer>`__
|
||||
|
||||
* `Bugs: Telemetry v3
|
||||
(gnocchi) <https://bugs.launchpad.net/gnocchi>`__
|
||||
|
||||
* `Bugs: Workflow service
|
||||
(mistral) <https://bugs.launchpad.net/mistral>`__
|
||||
|
||||
* `Bugs: Messaging service
|
||||
(zaqar) <https://bugs.launchpad.net/zaqar>`__
|
||||
|
||||
* `Bugs: OpenStack API Documentation
|
||||
(developer.openstack.org) <https://bugs.launchpad.net/openstack-api-site>`__
|
||||
|
||||
* `Bugs: OpenStack Documentation
|
||||
(docs.openstack.org) <https://bugs.launchpad.net/openstack-manuals>`__
|
||||
|
||||
The OpenStack IRC channel
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The OpenStack community lives in the #openstack IRC channel on the
|
||||
Freenode network. You can hang out, ask questions, or get immediate
|
||||
feedback for urgent and pressing issues. To install an IRC client or use
|
||||
a browser-based client, go to
|
||||
`https://webchat.freenode.net/ <https://webchat.freenode.net>`__. You can
|
||||
also use `Colloquy <http://colloquy.info/>`_ (Mac OS X),
|
||||
`mIRC <http://www.mirc.com/>`_ (Windows),
|
||||
or XChat (Linux). When you are in the IRC channel
|
||||
and want to share code or command output, the generally accepted method
|
||||
is to use a Paste Bin. The OpenStack project has one at `Paste
|
||||
<http://paste.openstack.org>`_. Just paste your longer amounts of text or
|
||||
logs in the web form and you get a URL that you can paste into the
|
||||
channel. The OpenStack IRC channel is ``#openstack`` on
|
||||
``irc.freenode.net``. You can find a list of all OpenStack IRC channels on
|
||||
the `IRC page on the wiki <https://wiki.openstack.org/wiki/IRC>`_.
|
||||
|
||||
Documentation feedback
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
To provide feedback on documentation, join and use the
|
||||
openstack-docs@lists.openstack.org mailing list at `OpenStack
|
||||
Documentation Mailing
|
||||
List <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-docs>`__,
|
||||
or `report a
|
||||
bug <https://bugs.launchpad.net/openstack-manuals/+filebug>`__.
|
||||
|
||||
OpenStack distribution packages
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The following Linux distributions provide community-supported packages
|
||||
for OpenStack:
|
||||
|
||||
* **Debian:** https://wiki.debian.org/OpenStack
|
||||
|
||||
* **CentOS, Fedora, and Red Hat Enterprise Linux:**
|
||||
https://www.rdoproject.org/
|
||||
|
||||
* **openSUSE and SUSE Linux Enterprise Server:**
|
||||
https://en.opensuse.org/Portal:OpenStack
|
||||
|
||||
* **Ubuntu:** https://wiki.ubuntu.com/ServerTeam/CloudArchive
|
@ -1,51 +0,0 @@
|
||||
.. ## WARNING ##########################################################
|
||||
.. This file is synced from openstack/openstack-manuals repository to
|
||||
.. other related repositories. If you need to make changes to this file,
|
||||
.. make the changes in openstack-manuals. After any change merged to,
|
||||
.. openstack-manuals, automatically a patch for others will be proposed.
|
||||
.. #####################################################################
|
||||
|
||||
===========
|
||||
Conventions
|
||||
===========
|
||||
|
||||
The OpenStack documentation uses several typesetting conventions.
|
||||
|
||||
Notices
|
||||
~~~~~~~
|
||||
|
||||
Notices take these forms:
|
||||
|
||||
.. note:: A comment with additional information that explains a part of the
|
||||
text.
|
||||
|
||||
.. important:: Something you must be aware of before proceeding.
|
||||
|
||||
.. tip:: An extra but helpful piece of practical advice.
|
||||
|
||||
.. caution:: Helpful information that prevents the user from making mistakes.
|
||||
|
||||
.. warning:: Critical information about the risk of data loss or security
|
||||
issues.
|
||||
|
||||
Command prompts
|
||||
~~~~~~~~~~~~~~~
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ command
|
||||
|
||||
.. end
|
||||
|
||||
Any user, including the ``root`` user, can run commands that are
|
||||
prefixed with the ``$`` prompt.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# command
|
||||
|
||||
.. end
|
||||
|
||||
The ``root`` user must run commands that are prefixed with the ``#``
|
||||
prompt. You can also prefix these commands with the :command:`sudo`
|
||||
command, if available, to run them.
|
4135
common/glossary.rst
4135
common/glossary.rst
File diff suppressed because it is too large
Load Diff
@ -1,30 +0,0 @@
|
||||
# Directories to be set up
|
||||
declare -A DIRECTORIES=(
|
||||
)
|
||||
|
||||
# books to be built
|
||||
declare -A BOOKS=(
|
||||
["de"]="api-quick-start"
|
||||
["eo"]="api-quick-start"
|
||||
["id"]="api-quick-start"
|
||||
["ja"]="api-quick-start"
|
||||
["ko_KR"]="api-quick-start"
|
||||
["tr_TR"]="api-quick-start"
|
||||
["zh_CN"]="api-quick-start"
|
||||
)
|
||||
|
||||
|
||||
# Location of doc dir
|
||||
DOC_DIR="./"
|
||||
|
||||
# Books with special handling
|
||||
# Values need to match content in project-config/jenkins/scripts/common_translation_update.sh
|
||||
declare -A SPECIAL_BOOKS
|
||||
SPECIAL_BOOKS=(
|
||||
["api-quick-start"]="RST"
|
||||
# These are translated in openstack-manuals
|
||||
["common"]="skip"
|
||||
# Obsolete
|
||||
["api-ref"]="skip"
|
||||
|
||||
)
|
@ -1,5 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
mkdir -p publish-docs
|
||||
|
||||
tools/build-api-quick-start.sh
|
@ -1,5 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
mkdir -p publish-docs
|
||||
|
||||
tools/build-rst.sh api-quick-start --target api-guide/quick-start
|
@ -1,78 +0,0 @@
|
||||
#!/bin/bash -xe
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||
# not use this file except in compliance with the License. You may obtain
|
||||
# a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
DIRECTORY=$1
|
||||
|
||||
if [ -z "$DIRECTORY" ] ; then
|
||||
echo "usage $0 DIRECTORY options"
|
||||
echo "Options are:"
|
||||
echo "--glossary: Build glossary"
|
||||
echo "--tag TAG: Use given tag for building"
|
||||
echo "--target TARGET: Copy files to publish-docs/$TARGET"
|
||||
echo "--build BUILD: Name of build directory"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
GLOSSARY=0
|
||||
TARGET=""
|
||||
TAG=""
|
||||
TAG_OPT=""
|
||||
BUILD=""
|
||||
|
||||
while [[ $# > 1 ]] ; do
|
||||
option="$1"
|
||||
case $option in
|
||||
--glossary)
|
||||
GLOSSARY=1
|
||||
;;
|
||||
--tag)
|
||||
TAG="$2"
|
||||
TAG_OPT="-t $2"
|
||||
shift
|
||||
;;
|
||||
--target)
|
||||
TARGET="$2"
|
||||
shift
|
||||
;;
|
||||
--build)
|
||||
BUILD="$2"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
|
||||
if [ "$GLOSSARY" -eq "1" ] ; then
|
||||
echo "Generating Glossary"
|
||||
tools/glossary2rst.py doc/common/glossary.rst
|
||||
fi
|
||||
|
||||
if [ -z "$BUILD" ] ; then
|
||||
if [ -z "$TAG" ] ; then
|
||||
BUILD_DIR="$DIRECTORY/build/html"
|
||||
else
|
||||
BUILD_DIR="$DIRECTORY/build-${TAG}/html"
|
||||
fi
|
||||
else
|
||||
BUILD_DIR="$DIRECTORY/$BUILD/html"
|
||||
fi
|
||||
|
||||
sphinx-build -E -W $TAG_OPT $DIRECTORY/source $BUILD_DIR
|
||||
|
||||
# Copy RST
|
||||
if [ "$TARGET" != "" ] ; then
|
||||
mkdir -p publish-docs/$TARGET
|
||||
rsync -a $BUILD_DIR/ publish-docs/$TARGET/
|
||||
fi
|
@ -1,110 +0,0 @@
|
||||
#!/bin/bash -xe
|
||||
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||
# not use this file except in compliance with the License. You may obtain
|
||||
# a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
REPOSITORY=$1
|
||||
USE_DOC=$2
|
||||
DOCNAME=$3
|
||||
|
||||
if [ $# -lt 3 ] ; then
|
||||
echo "usage $0 REPOSITORY USE_DOC DOCNAME"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DIRECTORY=$DOCNAME
|
||||
TOPDIR=""
|
||||
if [ "$USE_DOC" = "1" ] ; then
|
||||
DIRECTORY="doc/$DOCNAME"
|
||||
TOPDIR="doc/"
|
||||
fi
|
||||
|
||||
|
||||
# We're not doing anything for this directory. But we need to handle
|
||||
# it by this script so that the common.pot file gets registered.
|
||||
if [[ "$DOCNAME" = "common" ]] ; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$REPOSITORY" = "openstack-manuals" ] ; then
|
||||
# Build Glossary
|
||||
tools/glossary2rst.py doc/common/glossary.rst
|
||||
fi
|
||||
# First remove the old pot file, otherwise the new file will contain
|
||||
# old references
|
||||
|
||||
rm -f ${DIRECTORY}/source/locale/$DOCNAME.pot
|
||||
|
||||
# We need to extract all strings, so add all supported tags
|
||||
TAG=""
|
||||
if [ ${DOCNAME} = "install-guide" ] ; then
|
||||
TAG="-t obs -t rdo -t ubuntu -t debian"
|
||||
fi
|
||||
if [ ${DOCNAME} = "firstapp" ] ; then
|
||||
TAG="-t libcloud -t dotnet -t fog -t openstacksdk -t pkgcloud -t shade -t jclouds"
|
||||
fi
|
||||
sphinx-build -b gettext $TAG ${DIRECTORY}/source/ \
|
||||
${DIRECTORY}/source/locale/
|
||||
|
||||
if [ "$REPOSITORY" = "openstack-manuals" ] ; then
|
||||
# Update common
|
||||
sed -i -e 's/^"Project-Id-Version: [a-zA-Z0-9\. ]+\\n"$/"Project-Id-Version: \\n"/' \
|
||||
${DIRECTORY}/source/locale/common.pot
|
||||
# Create the common pot file
|
||||
msgcat --sort-by-file ${TOPDIR}common/source/locale/common.pot \
|
||||
${DIRECTORY}/source/locale/common.pot | \
|
||||
sed -e 's/^"Project-Id-Version: [a-zA-Z0-9\. ]+\\n"$/"Project-Id-Version: \\n"/' | \
|
||||
awk '$0 !~ /^\# [a-z0-9]+$/' | awk '$0 !~ /^\# \#-\#-\#-\#-\# /' \
|
||||
> ${DIRECTORY}/source/locale/common.pot
|
||||
mv -f ${DIRECTORY}/source/locale/common.pot \
|
||||
${TOPDIR}common/source/locale/common.pot
|
||||
rm -f ${DIRECTORY}/source/locale/common.pot
|
||||
|
||||
# Simplify metadata
|
||||
rm -f ${TOPDIR}common/source/locale/dummy.po
|
||||
cat << EOF > ${TOPDIR}common/source/locale/dummy.po
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-01-01 01:01+0900\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
EOF
|
||||
msgmerge -N ${TOPDIR}common/source/locale/dummy.po \
|
||||
${TOPDIR}common/source/locale/common.pot \
|
||||
> ${TOPDIR}common/source/locale/tmp.pot
|
||||
mv -f ${TOPDIR}common/source/locale/tmp.pot \
|
||||
${TOPDIR}common/source/locale/common.pot
|
||||
rm -f ${TOPDIR}common/source/locale/dummy.po
|
||||
else
|
||||
# common is translated as part of openstack-manuals, do not
|
||||
# include the file in the combined tree if it exists.
|
||||
if [ -f ${DIRECTORY}/source/locale/common.pot ] ; then
|
||||
rm ${DIRECTORY}/source/locale/common.pot
|
||||
fi
|
||||
fi
|
||||
|
||||
# Take care of deleting all temporary files so that
|
||||
# "git add ${DIRECTORY}/source/locale" will only add the
|
||||
# single pot file.
|
||||
# Remove UUIDs, those are not necessary and change too often
|
||||
msgcat --sort-by-file ${DIRECTORY}/source/locale/*.pot | \
|
||||
awk '$0 !~ /^\# [a-z0-9]+$/' > ${DIRECTORY}/source/$DOCNAME.pot
|
||||
rm ${DIRECTORY}/source/locale/*.pot
|
||||
rm -rf ${DIRECTORY}/source/locale/.doctrees/
|
||||
mv ${DIRECTORY}/source/$DOCNAME.pot ${DIRECTORY}/source/locale/$DOCNAME.pot
|
39
tox.ini
39
tox.ini
@ -24,8 +24,6 @@ commands =
|
||||
[testenv:checkbuild]
|
||||
basepython = python2
|
||||
commands =
|
||||
# Build and copy RST Guides
|
||||
{toxinidir}/tools/build-all-rst.sh
|
||||
# Build website index
|
||||
{toxinidir}/tools/build-index.sh build
|
||||
|
||||
@ -33,47 +31,12 @@ commands =
|
||||
# Prepare documents (without www) so that they can get published on
|
||||
# developer.openstack.org with just copying publish-docs/api-ref over.
|
||||
commands =
|
||||
# Build and copy API Quick Start
|
||||
{toxinidir}/tools/build-api-quick-start.sh
|
||||
# Build website index
|
||||
{toxinidir}/tools/build-index.sh publish
|
||||
|
||||
[testenv:checklang]
|
||||
whitelist_externals = doc-tools-check-languages
|
||||
commands = doc-tools-check-languages doc-tools-check-languages.conf test all
|
||||
|
||||
[testenv:buildlang]
|
||||
# Run as "tox -e buildlang -- $LANG"
|
||||
whitelist_externals = doc-tools-check-languages
|
||||
commands = doc-tools-check-languages doc-tools-check-languages.conf test {posargs}
|
||||
|
||||
[testenv:publishlang]
|
||||
# Publish translated documents to developer.openstack.org with just
|
||||
# copying publish-docs over.
|
||||
whitelist_externals =
|
||||
doc-tools-check-languages
|
||||
mkdir
|
||||
mv
|
||||
rm
|
||||
ls
|
||||
commands =
|
||||
# Cleanup first - important when this environment runs locally
|
||||
# multiple times.
|
||||
rm -rf publish-docs
|
||||
doc-tools-check-languages doc-tools-check-languages.conf publish all
|
||||
|
||||
[testenv:generatepot-rst]
|
||||
# Generate POT files for translation, needs {posargs} like:
|
||||
# tox -e generatepot-rst -- firstapp
|
||||
commands = {toxinidir}/tools/generatepot-rst.sh api-site 0 {posargs}
|
||||
|
||||
[testenv:docs]
|
||||
commands =
|
||||
{toxinidir}/tools/build-all-rst.sh
|
||||
|
||||
[testenv:api-quick-start]
|
||||
commands =
|
||||
{toxinidir}/tools/build-api-quick-start.sh
|
||||
{toxinidir}/tools/build-index.sh publish
|
||||
|
||||
[doc8]
|
||||
# Settings for doc8:
|
||||
|
@ -69,3 +69,6 @@ redirectmatch 301 /api-ref/{{ alias }}/(.*) /api-ref/{{ service_type }}/$1
|
||||
{% endfor %}
|
||||
|
||||
redirect 301 /sdks/python/openstacksdk https://docs.openstack.org/openstacksdk/latest/
|
||||
|
||||
# Redirect api-quick-start, now on docs.openstack.org
|
||||
redirect 301 /api-guide/quick-start/ https://docs.openstack.org/api-quick-start/
|
||||
|
Loading…
Reference in New Issue
Block a user