Returns the specified application profile
GET/v1/appProfiles/:uid
Returns the specified application profile
Request
Path Parameters
Header Parameters
Scope the request to the specified project uid
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
]
Array [
]
metadata
object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
annotations
object
Annotations are system generated key value metadata for the resource. As an input certain annotations like description can be set.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
labels
object
Labels are key value data to organize and categorize resources. Providing spectro__tag as value for a label is considered as a kubernetes compliant tag
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Name of the resource.
UID is the unique identifier generated for the resource. This is not an input field for any request.
spec
object
Application profile parent profile uid
template
object
Application profile template information
appTiers
object[]
Application profile tiers
Application tier name
Possible values: [manifest
, helm
, operator-instance
, container
]
Default value: manifest
Application tier uid to uniquely identify the tier
Application tier version
registryRefs
object[]
Application profile registries reference
Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
Name of the referent.
UID of the referent.
Application profile version
versions
object[]
Application profile versions list
status
object
Application profile status
inUseApps
object[]
Application profile apps array
{
"metadata": {
"annotations": {},
"creationTimestamp": "2024-04-16T17:48:59.991Z",
"deletionTimestamp": "2024-04-16T17:48:59.991Z",
"labels": {},
"lastModifiedTimestamp": "2024-04-16T17:48:59.991Z",
"name": "string",
"uid": "string"
},
"spec": {
"parentUid": "string",
"template": {
"appTiers": [
{
"name": "string",
"type": "manifest",
"uid": "string",
"version": "string"
}
],
"registryRefs": [
{
"kind": "string",
"name": "string",
"uid": "string"
}
]
},
"version": "string",
"versions": [
{
"uid": "string",
"version": "string"
}
]
},
"status": {
"inUseApps": [
{
"kind": "string",
"name": "string",
"projectUid": "string",
"tenantUid": "string",
"uid": "string"
}
]
}
}