Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cloud
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
cloud
Merge requests
!1596
Issue
#3341036
: Add the functions for OpenStack Project in the SPA (CRUD)
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3341036
: Add the functions for OpenStack Project in the SPA (CRUD)
issue/cloud-3341036:d-spa-functions-openstack-project
into
5.x
Overview
0
Commits
3
Pipelines
0
Changes
9
Merged
Issue #3341036: Add the functions for OpenStack Project in the SPA (CRUD)
Masami Suzuki
requested to merge
issue/cloud-3341036:d-spa-functions-openstack-project
into
5.x
Feb 18, 2023
Overview
0
Commits
3
Pipelines
0
Changes
9
0
0
Merge request reports
Compare
5.x
version 2
0fea37b8
Feb 18, 2023
version 1
590b527f
Feb 18, 2023
5.x (base)
and
latest version
latest version
0fea37b8
3 commits,
Feb 20, 2023
version 2
0fea37b8
3 commits,
Feb 18, 2023
version 1
590b527f
1 commit,
Feb 18, 2023
9 files
+
188
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
modules/cloud_dashboard/cloud_dashboard/src/constant/templates/entity/openstack/project.ts
0 → 100644
+
31
−
0
View file @ 0fea37b8
Edit in single-file editor
Open in Web IDE
import
EntityInfoTemplate
from
'
model/EntityInfoTemplate
'
;
// Template for displaying detailed information about entities in OpenStack.
const
OPENSTACK_PROJECT_TEMPLATE
:
EntityInfoTemplate
=
{
cloudServiceProvider
:
'
openstack
'
,
entityName
:
'
project
'
,
entityRecords
:
[
{
panelName
:
'
Project
'
,
tableRecordList
:
[],
keyValueRecords
:
[
{
labelName
:
'
Name
'
,
name
:
'
name
'
,
type
:
'
default
'
},
{
labelName
:
'
Project ID
'
,
name
:
'
project_id
'
,
type
:
'
default
'
},
{
labelName
:
'
Description
'
,
name
:
'
description
'
,
type
:
'
default
'
},
{
labelName
:
'
Is domain
'
,
name
:
'
is_domain
'
,
type
:
'
boolean
'
,
value
:
[
'
yes
'
,
'
no
'
]
},
{
labelName
:
'
Domain ID
'
,
name
:
'
domain_id
'
,
type
:
'
default
'
},
{
labelName
:
'
Enabled
'
,
name
:
'
enabled
'
,
type
:
'
boolean
'
,
value
:
[
'
yes
'
,
'
no
'
]
},
{
labelName
:
'
Created
'
,
name
:
'
created
'
,
type
:
'
datetime
'
},
]
},
{
panelName
:
'
Others
'
,
tableRecordList
:
[],
keyValueRecords
:
[
{
labelName
:
'
Cloud service provider ID
'
,
name
:
'
cloud_context
'
,
type
:
'
default
'
},
]
},
]
};
export
default
OPENSTACK_PROJECT_TEMPLATE
;
Loading