Skip to content

Commit

Permalink
feat: add attributes and branch for ADS deployments #3095
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Dec 6, 2022
1 parent 16ab709 commit 671d31d
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
44 changes: 44 additions & 0 deletions jans-linux-setup/jans_setup/schema/jans_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3208,6 +3208,28 @@
"syntax": "1.3.6.1.4.1.1466.115.121.1.15",
"x_origin": "Jans created attribute"
},
{
"desc": "Assets of an ADS project",
"equality": "caseIgnoreMatch",
"names": [
"adsPrjAssets"
],
"oid": "jansAttr",
"substr": "caseIgnoreSubstringsMatch",
"syntax": "1.3.6.1.4.1.1466.115.121.1.15",
"x_origin": "Jans created attribute"
},
{
"desc": "Misc details associated to an ADS project",
"equality": "caseIgnoreMatch",
"names": [
"adsPrjDeplDetails"
],
"oid": "jansAttr",
"substr": "caseIgnoreSubstringsMatch",
"syntax": "1.3.6.1.4.1.1466.115.121.1.15",
"x_origin": "Jans created attribute"
},
{
"desc": "jans Display Name Localized",
"equality": "caseIgnoreMatch",
Expand Down Expand Up @@ -4344,6 +4366,28 @@
],
"x_origin": "Jans created objectclass"
},
{
"kind": "STRUCTURAL",
"may": [
"jansId",
"jansStartDate",
"jansActive",
"jansEndDate",
"adsPrjAssets",
"adsPrjDeplDetails"
],
"must": [
"objectclass"
],
"names": [
"adsPrjDeployment"
],
"oid": "jansObjClass",
"sup": [
"top"
],
"x_origin": "Jans created objectclass"
},
{
"kind": "STRUCTURAL",
"may": [
Expand Down
18 changes: 18 additions & 0 deletions jans-linux-setup/jans_setup/static/rdbm/sql_data_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -861,5 +861,23 @@
"size": 128,
"type": "STRING"
}
},
"adsPrjAssets": {
"mysql": {
"type": "LONGTEXT"
},
"spanner": {
"type": "STRING(MAX)"
}
},
"adsPrjDeplDetails": {
"mysql": {
"size": 2048,
"type": "VARCHAR"
},
"spanner": {
"size": 2048,
"type": "STRING"
}
}
}
5 changes: 5 additions & 0 deletions jans-linux-setup/jans_setup/templates/agama.ldif
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ dn: ou=flows,ou=agama,o=jans
objectClass: organizationalUnit
objectClass: top
ou: flows

dn: ou=deployments,ou=agama,o=jans
objectClass: organizationalUnit
objectClass: top
ou: deployments

0 comments on commit 671d31d

Please sign in to comment.