Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ATS oneM2M Types Release 4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TST
ATS oneM2M Types Release 4
Compare revisions
fdbbc9875fde66230579601d35f7874216ad8429 to 42193462e254a7025f3b2c8e11228652d9e595d1
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
TST/ATS-oneM2M-Types-Release-4
Select target project
No results found
42193462e254a7025f3b2c8e11228652d9e595d1
Select Git revision
Branches
Interim
Interim-TDE-2021-0061
ProcessManagementAndSoftwareManagementTypes
Titan-changes
main
master
6 results
Swap
Target
TST/ATS-oneM2M-Types-Release-4
Select target project
TST/ATS-oneM2M-Types-Release-4
1 result
fdbbc9875fde66230579601d35f7874216ad8429
Select Git revision
Branches
Interim
Interim-TDE-2021-0061
ProcessManagementAndSoftwareManagementTypes
Titan-changes
main
master
6 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Adding types for softwareManagement
· 42193462
Miguel Angel Reina Ortega
authored
3 years ago
Signed-off-by:
reinaortega
<
miguelangel.reinaortega@etsi.org
>
42193462
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
OneM2M_Types.ttcn
+42
-0
42 additions, 0 deletions
OneM2M_Types.ttcn
with
42 additions
and
0 deletions
OneM2M_Types.ttcn
View file @
42193462
...
...
@@ -8446,6 +8446,48 @@ with {
variant
"element"
;
};
type
record
EvalCriteria
//TODO Manually added until XSD files are updated
{
XSD
.
NCName
subject
,
Operation
operator
,
// see type enumerated Operation
XSD
.
Integer
threshold
}
type
record
ActionInput
//TODO Manually added until XSD files are updated
{
XSD
.
NCName
contentString
optional
,
XSD
.
AnyURI
resourceID
optional
,
XSD
.
AnyURI
resourceAttributeID
optional
}
group
softwareTypes
{
//TODO To be removed/replaced by the type defined in XSDs- TS-0001, Table 9.6.76-2
type
enumerated
AggregatedSoftwareStatus
{
int0
(
0
),
//Uninitialized
int1
(
1
),
//Successful
int2
(
2
),
//Failure
int3
(
3
)
//In_Process
}
type
enumerated
SoftwareOperation
{
int1
(
1
),
//install
int2
(
2
),
//uninstall
int3
(
3
),
//activate
int4
(
4
)
//deactivate
}
type
enumerated
EvalMode
{
int0
(
0
),
//off
int1
(
1
),
//once
int2
(
2
),
//periodic
int3
(
3
)
//continuous
}
}
// End of group Software
}
with
{
encode
"XML"
;
...
...
This diff is collapsed.
Click to expand it.