Get Model Metadata
get
/rest/v19/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/models/{modelVarName}
This endpoint returns definitions for a specific Model within a given Product Family and Product Line.
Request
Path Parameters
-
modelVarName(required): string
Model variable name.
-
prodFamVarName(required): string
Product family variable name.
-
prodLineVarName(required): string
Product line variable name.
Query Parameters
-
excludeLinks: string
Exclude links.
-
expand: string
Allows expansion of relationships.
-
showParentAttrs: string
Allows expansion of parent attributes.
Response
Supported Media Types
- application/json
Default Response
Model details in a product line.
Root Schema : model
Type:
Show Source
object-
_bm_model_description:
string
Title:
Product Model DescriptionProduct model description. -
_bm_model_name:
string
Title:
Product Model NameProduct model display name. -
_bm_model_variable_name:
string
Title:
Product Model Variable NameUnique variable name to identify the product model. -
customProperties:
object Custom Properties
Title:
Custom PropertiesCustom properties of the product model. -
id:
integer
Title:
IdPrimary key of the product model. -
links:
array links
Nested Schema : Custom Properties
Type:
objectTitle:
Custom PropertiesCustom properties of the product model.
Show Source
Nested Schema : links
Type:
Show Source
array-
Array of:
object reference links
Title:
reference linksReference links for the Parent, Self, Children and Related as applicable
Nested Schema : reference links
Type:
objectTitle:
reference linksReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
URL to the related objectURL to the related object -
rel:
string
Title:
Link Relationship to the current objectLink Relationship to the current object
Examples
The following example shows how to retrieve the metadata for the specified Configuration item by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionsPackage
Response Body Sample
{
"id": 36637530,
"links": [{
"rel": "parent",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers"
}, {
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage/attributes"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage/arraySets"
}
],
"customProperties": {
"_bm_model_ht_model_image": null,
"_bm_model_ht_model_imageURL": "https://hitech-build.bigmachines.com/bmfsweb/hitech-build/image/Vision/ultraPackage.png",
"_bm_model_ht_model_basePrice": {
"currency": "USD",
"value": "$15,131.670000"
},
"_bm_model_ht_model_configurationLink": "&packagedSolutions=Ultra",
"_bm_model_ht_model_operatingSystem": "Blue Hat Enterprise Premium",
"_bm_model_ht_model_processor": "Vision E3-4870",
"_bm_model_ht_model_sockets": 4,
"_bm_model_ht_model_cores": 10,
"_bm_model_ht_model_threads": 80,
"_bm_model_ht_model_cpuSpeed": "2.4 GHz x 4",
"_bm_model_ht_model_memory": "32 GB RAM/480 GB SSD",
"_bm_model_ht_model_formFactor": "Blade",
"_bm_model_ht_model_productDetailsLink": "",
"_bm_model_ht_model_simpleDescription": "Perfect Solutions in Single Full-Height Blades",
"_bm_model_ht_model_link1": "https://hitech-build.bigmachines.com/bmfsweb/hitech-build/image/Data%20Sheets/AS86009.pdf",
"_bm_model_ht_model_link2": "https://hitech-build.bigmachines.com/bmfsweb/hitech-build/image/Data%20Sheets/Comparing_Dual-Core_vs_Quad-Core_CPUs.pdf",
"_bm_model_ht_model_link3": "https://www.oracle.com/us/solutions/oracle-opt-sols-cloud-inf-sol-brief-406108.pdf",
"_bm_model_ready_for_self_service": false,
"_bm_model_self_service_part_number": ""
},
"_bm_model_name": "Ultra Power Solution Package",
"_bm_model_variable_name": "ultraPowerSolutionPackage",
"_bm_model_description": "Vision's Ultra Power Solution is the perfect integration of compute, memory, and storage in a single full-height blade form actor for running both virtual and physical workloads. It’s easy to deploy, manage and provision."
}