File: glossary.rst

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (104 lines) | stat: -rw-r--r-- 3,671 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
:orphan:

Glossary
========

.. glossary::
    :sorted:

    CLI
        Command-Line Interface; a textual user interface.

    compute
        OpenStack Compute (Nova).

    container
        One of the :term:`object-store` resources; a container holds
        :term:`objects <object>` being stored.

    endpoint
        A base URL used in a REST request. An `authentication endpoint` is
        specifically the URL given to a user to identify a cloud. A service
        endpoint is generally obtained from the service catalog.

    host
        A physical computer. Contrast with :term:`node` and :term:`server`.

    identity
        OpenStack Identity (Keystone).

    image
        OpenStack Image (Glance). Also the attribute name of the disk files
        stored for use by servers.

    keypair
        The attribute name of the SSH public key used in the OpenStack Compute
        API for server authentication.

    node
        A logical system, may refer to a :term:`server` (virtual machine) or a
        :term:`host`.

        Generally used to describe an OS instance where a specific process is
        running, e.g. a 'network node' is where the network processes run,
        and may be directly on a host or in a server. Contrast with
        :term:`host` and :term:`server`.

    object
        A generic term which normally refers to the a Python ``object``.
        The OpenStack Object Store service (Swift) also uses `object` as the
        name of the item being stored within a :term:`container`.

    object-store
        OpenStack Object Store (Swift).

    project
        The name of the owner of resources in an OpenStack cloud. A `project`
        can map to a customer, account or organization in different OpenStack
        deployments. Used instead of the deprecated :term:`tenant`.

    region
        The attribute name of a partitioning of cloud resources.

    resource
        A Python object representing an OpenStack resource inside the SDK code.
        Also used to describe the items managed by OpenStack.

    role
        A personality that a user assumes when performing a specific set of
        operations. A `role` includes a set of rights and privileges that a
        user assuming that role inherits. The OpenStack Identity service
        includes the set of roles that a user can assume in the
        :term:`token` that is issued to that user.

        The individual services determine how the roles are interpreted
        and access granted to operations or resources. The OpenStack Identity
        service treats a role as an arbitrary name assigned by the cloud
        administrator.

    server
        A virtual machine or a bare-metal host managed by the OpenStack Compute
        service. Contrast with :term:`host` and :term:`node`.

    service
        In OpenStack this refers to a service/endpoint in the
        :term:`ServiceCatalog <service catalog>`.
        It could also be a collection of endpoints for different
        :term:`regions <region>`.
        A service has a type and a name.

    service catalog
        The list of :term:`services <service>` configured at a given
        authentication endpoint available to the authenticated user.

    tenant
        Deprecated in favor of :term:`project`.

    token
        An arbitrary bit of text that is used to access resources. Some tokens
        are `scoped` to determine what resources are accessible with it. A
        token may be revoked at any time and is valid for a finite duration.

    volume
        OpenStack Volume (Cinder). Also the attribute name of the virtual
        disks managed by the OpenStack Volume service.