Skip to content

Commit

Permalink
Update chamber license properties in hpcworkbench resource provider (#…
Browse files Browse the repository at this point in the history
…5107)

* Update chamber license properties

* Fixed validation failures

* Fixed prettier validation

* Undo changes for package-lock.json file
  • Loading branch information
sabherwalshruti authored Oct 13, 2021
1 parent d6c225b commit c51ca1b
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 3 deletions.
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1662,3 +1662,4 @@ rawvirtual
sesparse
cadl
graphservice
lmhostid
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,109 @@
}
}
},
"Ansys": {
"type": "object",
"description": "Ansys Common Licensing.",
"properties": {
"enable": {
"type": "boolean",
"description": "Switch to show if License Service is activated."
},
"server": {
"type": "array",
"description": "License Service server.",
"items": {
"type": "string"
}
},
"lmhostid": {
"type": "array",
"description": "Unique identifier of HPC Workbench chamber license servers used by FlexNet Licensing Service.",
"items": {
"type": "string"
}
}
}
},
"Cadence": {
"type": "object",
"description": "Cadence License Manager",
"properties": {
"enable": {
"type": "boolean",
"description": "Switch to show if License Service is activated."
},
"server": {
"type": "array",
"description": "License Service server.",
"items": {
"type": "string"
}
},
"lmhostid": {
"type": "array",
"description": "Unique identifier of HPC Workbench chamber license servers used by FlexNet Licensing Service.",
"items": {
"type": "string"
}
},
"mfp": {
"type": "array",
"description": "License server information for Cadence License Manager.",
"items": {
"type": "string"
}
}
}
},
"Mentor": {
"type": "object",
"description": "Mentor Standard Licensing.",
"properties": {
"enable": {
"type": "boolean",
"description": "Switch to show if License Service is activated"
},
"server": {
"type": "array",
"description": "License Service server.",
"items": {
"type": "string"
}
},
"lmhostid": {
"type": "array",
"description": "Unique identifier of HPC Workbench chamber license servers used by FlexNet Licensing Service.",
"items": {
"type": "string"
}
}
}
},
"Synopsys": {
"type": "object",
"description": "Synopsys Common Licensing",
"properties": {
"enable": {
"type": "boolean",
"description": "Switch to show if License Service is activated."
},
"server": {
"type": "array",
"description": "License Service server.",
"items": {
"type": "string"
}
},
"vmUuid": {
"type": "array",
"description": "Virtual machine universal unique identifier of HPC Workbench chamber license servers used by FlexNet Licensing Service.",
"items": {
"type": "string"
}
}
}
},
"ChamberPropertiesFormat": {
"type": "object",
"properties": {
Expand All @@ -398,9 +501,27 @@
"type": "string"
}
},
"licenseHostId": {
"description": "Gets or sets the licenseHostId.",
"type": "string"
"licenseServices": {
"description": "Gets or sets the license services for each EDA vendor.",
"type": "object",
"properties": {
"cadence": {
"$ref": "#/definitions/Cadence",
"description": "Gets or sets the cadence properties."
},
"ansys": {
"$ref": "#/definitions/Ansys",
"description": "Gets or sets the ansys properties."
},
"mentor": {
"$ref": "#/definitions/Mentor",
"description": "Gets or sets the mentor properties."
},
"synopsys": {
"$ref": "#/definitions/Synopsys",
"description": "Gets or sets the synopsys properties."
}
}
},
"provisioningState": {
"$ref": "./hpcworkbench.json#/definitions/ProvisioningState",
Expand Down

0 comments on commit c51ca1b

Please sign in to comment.