summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: a7a863560c7267b27ac81f14d12b5b1730ebe9e9 (plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[metadata]
name = python-saharaclient
summary = Client library for Sahara API
description-file =
    README.rst
license = Apache License, Version 2.0
author = OpenStack
author-email = openstack-discuss@lists.openstack.org
home-page = https://docs.openstack.org/python-saharaclient/latest/
python-requires = >=3.8
classifier =
    Environment :: OpenStack
    Intended Audience :: Information Technology
    Intended Audience :: System Administrators
    License :: OSI Approved :: Apache Software License
    Operating System :: POSIX :: Linux
    Programming Language :: Python
    Programming Language :: Python :: Implementation :: CPython
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9

[files]
packages =
    saharaclient

[entry_points]
openstack.cli.extension =
    data_processing = saharaclient.osc.plugin

openstack.data_processing.v1 =
    dataprocessing_plugin_list = saharaclient.osc.v1.plugins:ListPlugins
    dataprocessing_plugin_show = saharaclient.osc.v1.plugins:ShowPlugin
    dataprocessing_plugin_configs_get = saharaclient.osc.v1.plugins:GetPluginConfigs
    dataprocessing_plugin_update = saharaclient.osc.v1.plugins:UpdatePlugin

    dataprocessing_data_source_create = saharaclient.osc.v1.data_sources:CreateDataSource
    dataprocessing_data_source_list = saharaclient.osc.v1.data_sources:ListDataSources
    dataprocessing_data_source_show = saharaclient.osc.v1.data_sources:ShowDataSource
    dataprocessing_data_source_delete = saharaclient.osc.v1.data_sources:DeleteDataSource
    dataprocessing_data_source_update = saharaclient.osc.v1.data_sources:UpdateDataSource

    dataprocessing_image_list = saharaclient.osc.v1.images:ListImages
    dataprocessing_image_show = saharaclient.osc.v1.images:ShowImage
    dataprocessing_image_register = saharaclient.osc.v1.images:RegisterImage
    dataprocessing_image_unregister = saharaclient.osc.v1.images:UnregisterImage
    dataprocessing_image_tags_add = saharaclient.osc.v1.images:AddImageTags
    dataprocessing_image_tags_remove = saharaclient.osc.v1.images:RemoveImageTags
    dataprocessing_image_tags_set = saharaclient.osc.v1.images:SetImageTags

    dataprocessing_node_group_template_create = saharaclient.osc.v1.node_group_templates:CreateNodeGroupTemplate
    dataprocessing_node_group_template_list = saharaclient.osc.v1.node_group_templates:ListNodeGroupTemplates
    dataprocessing_node_group_template_show = saharaclient.osc.v1.node_group_templates:ShowNodeGroupTemplate
    dataprocessing_node_group_template_update = saharaclient.osc.v1.node_group_templates:UpdateNodeGroupTemplate
    dataprocessing_node_group_template_delete = saharaclient.osc.v1.node_group_templates:DeleteNodeGroupTemplate
    dataprocessing_node_group_template_import = saharaclient.osc.v1.node_group_templates:ImportNodeGroupTemplate
    dataprocessing_node_group_template_export = saharaclient.osc.v1.node_group_templates:ExportNodeGroupTemplate

    dataprocessing_cluster_template_create = saharaclient.osc.v1.cluster_templates:CreateClusterTemplate
    dataprocessing_cluster_template_list = saharaclient.osc.v1.cluster_templates:ListClusterTemplates
    dataprocessing_cluster_template_show = saharaclient.osc.v1.cluster_templates:ShowClusterTemplate
    dataprocessing_cluster_template_update = saharaclient.osc.v1.cluster_templates:UpdateClusterTemplate
    dataprocessing_cluster_template_delete = saharaclient.osc.v1.cluster_templates:DeleteClusterTemplate
    dataprocessing_cluster_template_import = saharaclient.osc.v1.cluster_templates:ImportClusterTemplate
    dataprocessing_cluster_template_export = saharaclient.osc.v1.cluster_templates:ExportClusterTemplate

    dataprocessing_cluster_create = saharaclient.osc.v1.clusters:CreateCluster
    dataprocessing_cluster_list = saharaclient.osc.v1.clusters:ListClusters
    dataprocessing_cluster_show = saharaclient.osc.v1.clusters:ShowCluster
    dataprocessing_cluster_update = saharaclient.osc.v1.clusters:UpdateCluster
    dataprocessing_cluster_delete = saharaclient.osc.v1.clusters:DeleteCluster
    dataprocessing_cluster_scale = saharaclient.osc.v1.clusters:ScaleCluster
    dataprocessing_cluster_verification = saharaclient.osc.v1.clusters:VerificationUpdateCluster

    dataprocessing_job_template_create = saharaclient.osc.v1.job_templates:CreateJobTemplate
    dataprocessing_job_template_list = saharaclient.osc.v1.job_templates:ListJobTemplates
    dataprocessing_job_template_show = saharaclient.osc.v1.job_templates:ShowJobTemplate
    dataprocessing_job_template_update = saharaclient.osc.v1.job_templates:UpdateJobTemplate
    dataprocessing_job_template_delete = saharaclient.osc.v1.job_templates:DeleteJobTemplate

    dataprocessing_job_type_list = saharaclient.osc.v1.job_types:ListJobTypes
    dataprocessing_job_type_configs_get = saharaclient.osc.v1.job_types:GetJobTypeConfigs

    dataprocessing_job_execute = saharaclient.osc.v1.jobs:ExecuteJob
    dataprocessing_job_list = saharaclient.osc.v1.jobs:ListJobs
    dataprocessing_job_show = saharaclient.osc.v1.jobs:ShowJob
    dataprocessing_job_update = saharaclient.osc.v1.jobs:UpdateJob
    dataprocessing_job_delete = saharaclient.osc.v1.jobs:DeleteJob

    dataprocessing_job_binary_create = saharaclient.osc.v1.job_binaries:CreateJobBinary
    dataprocessing_job_binary_list = saharaclient.osc.v1.job_binaries:ListJobBinaries
    dataprocessing_job_binary_show = saharaclient.osc.v1.job_binaries:ShowJobBinary
    dataprocessing_job_binary_update = saharaclient.osc.v1.job_binaries:UpdateJobBinary
    dataprocessing_job_binary_delete = saharaclient.osc.v1.job_binaries:DeleteJobBinary
    dataprocessing_job_binary_download = saharaclient.osc.v1.job_binaries:DownloadJobBinary

openstack.data_processing.v2 =
    dataprocessing_node_group_template_create = saharaclient.osc.v2.node_group_templates:CreateNodeGroupTemplate
    dataprocessing_node_group_template_list = saharaclient.osc.v2.node_group_templates:ListNodeGroupTemplates
    dataprocessing_node_group_template_show = saharaclient.osc.v2.node_group_templates:ShowNodeGroupTemplate
    dataprocessing_node_group_template_update = saharaclient.osc.v2.node_group_templates:UpdateNodeGroupTemplate
    dataprocessing_node_group_template_delete = saharaclient.osc.v2.node_group_templates:DeleteNodeGroupTemplate
    dataprocessing_node_group_template_import = saharaclient.osc.v2.node_group_templates:ImportNodeGroupTemplate
    dataprocessing_node_group_template_export = saharaclient.osc.v2.node_group_templates:ExportNodeGroupTemplate

    dataprocessing_plugin_list = saharaclient.osc.v2.plugins:ListPlugins
    dataprocessing_plugin_show = saharaclient.osc.v2.plugins:ShowPlugin
    dataprocessing_plugin_configs_get = saharaclient.osc.v2.plugins:GetPluginConfigs
    dataprocessing_plugin_update = saharaclient.osc.v2.plugins:UpdatePlugin

    dataprocessing_data_source_create = saharaclient.osc.v2.data_sources:CreateDataSource
    dataprocessing_data_source_list = saharaclient.osc.v2.data_sources:ListDataSources
    dataprocessing_data_source_show = saharaclient.osc.v2.data_sources:ShowDataSource
    dataprocessing_data_source_delete = saharaclient.osc.v2.data_sources:DeleteDataSource
    dataprocessing_data_source_update = saharaclient.osc.v2.data_sources:UpdateDataSource

    dataprocessing_image_list = saharaclient.osc.v2.images:ListImages
    dataprocessing_image_show = saharaclient.osc.v2.images:ShowImage
    dataprocessing_image_register = saharaclient.osc.v2.images:RegisterImage
    dataprocessing_image_unregister = saharaclient.osc.v2.images:UnregisterImage
    dataprocessing_image_tags_add = saharaclient.osc.v2.images:AddImageTags
    dataprocessing_image_tags_remove = saharaclient.osc.v2.images:RemoveImageTags
    dataprocessing_image_tags_set = saharaclient.osc.v2.images:SetImageTags

    dataprocessing_cluster_template_create = saharaclient.osc.v2.cluster_templates:CreateClusterTemplate
    dataprocessing_cluster_template_list = saharaclient.osc.v2.cluster_templates:ListClusterTemplates
    dataprocessing_cluster_template_show = saharaclient.osc.v2.cluster_templates:ShowClusterTemplate
    dataprocessing_cluster_template_update = saharaclient.osc.v2.cluster_templates:UpdateClusterTemplate
    dataprocessing_cluster_template_delete = saharaclient.osc.v2.cluster_templates:DeleteClusterTemplate
    dataprocessing_cluster_template_import = saharaclient.osc.v2.cluster_templates:ImportClusterTemplate
    dataprocessing_cluster_template_export = saharaclient.osc.v2.cluster_templates:ExportClusterTemplate

    dataprocessing_cluster_create = saharaclient.osc.v2.clusters:CreateCluster
    dataprocessing_cluster_list = saharaclient.osc.v2.clusters:ListClusters
    dataprocessing_cluster_show = saharaclient.osc.v2.clusters:ShowCluster
    dataprocessing_cluster_update = saharaclient.osc.v2.clusters:UpdateCluster
    dataprocessing_cluster_delete = saharaclient.osc.v2.clusters:DeleteCluster
    dataprocessing_cluster_scale = saharaclient.osc.v2.clusters:ScaleCluster
    dataprocessing_cluster_verification = saharaclient.osc.v2.clusters:VerificationUpdateCluster
    dataprocessing_cluster_update_keypair = saharaclient.osc.v2.clusters:UpdateKeypairCluster

    dataprocessing_job_template_create = saharaclient.osc.v2.job_templates:CreateJobTemplate
    dataprocessing_job_template_list = saharaclient.osc.v2.job_templates:ListJobTemplates
    dataprocessing_job_template_show = saharaclient.osc.v2.job_templates:ShowJobTemplate
    dataprocessing_job_template_update = saharaclient.osc.v2.job_templates:UpdateJobTemplate
    dataprocessing_job_template_delete = saharaclient.osc.v2.job_templates:DeleteJobTemplate

    dataprocessing_job_type_list = saharaclient.osc.v2.job_types:ListJobTypes
    dataprocessing_job_type_configs_get = saharaclient.osc.v2.job_types:GetJobTypeConfigs

    dataprocessing_job_execute = saharaclient.osc.v2.jobs:ExecuteJob
    dataprocessing_job_list = saharaclient.osc.v2.jobs:ListJobs
    dataprocessing_job_show = saharaclient.osc.v2.jobs:ShowJob
    dataprocessing_job_update = saharaclient.osc.v2.jobs:UpdateJob
    dataprocessing_job_delete = saharaclient.osc.v2.jobs:DeleteJob

    dataprocessing_job_binary_create = saharaclient.osc.v2.job_binaries:CreateJobBinary
    dataprocessing_job_binary_list = saharaclient.osc.v2.job_binaries:ListJobBinaries
    dataprocessing_job_binary_show = saharaclient.osc.v2.job_binaries:ShowJobBinary
    dataprocessing_job_binary_update = saharaclient.osc.v2.job_binaries:UpdateJobBinary
    dataprocessing_job_binary_delete = saharaclient.osc.v2.job_binaries:DeleteJobBinary
    dataprocessing_job_binary_download = saharaclient.osc.v2.job_binaries:DownloadJobBinary