Get Product Line Array Sets Metadata
get
/rest/v19/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/arraySets
This service returns the metadata for all array sets of a Product Line.
Request
Path Parameters
-
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
List of arraysets defined at product line level.
Root Schema : arraySet-collection
Type:
Show Source
object-
items:
array items
List of array sets
-
links:
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:
hrefURL to the related object -
rel:
string
Title:
LinkLink relationship to the current object
Nested Schema : arraySet
Type:
Show Source
object-
defaultAttrId:
integer
Title:
Default Attribute IdDefault attribute id. -
desc:
string
Title:
DescDesc. -
displayType:
object displayType
-
id:
integer
Title:
IdPrimary key of the array set. -
labelOption:
object labelOption
-
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable -
name:
string
Title:
The Name SchemaAn explanation about the purpose of this instance. -
prefixText:
string
Title:
Prefix TextPrefix text. -
refType:
integer
Title:
Ref TypeRef type. -
sizeAttrId:
integer
Title:
Size Attribute IdSize attribute id. -
sizeAttrVarName:
string
Title:
Size Attribute variable nameSize attribute variable name. -
suffixText:
string
Title:
Suffix TextSuffix text. -
variableName:
string
Title:
NameUnique variable name to identify the array set.
Nested Schema : displayType
Type:
Show Source
object-
displayValue:
string
Title:
Display ValueDisplay value. -
lookupCode:
string
Title:
Lookup CodeLookup code.
Nested Schema : labelOption
Type:
Show Source
object-
displayValue:
string
Title:
Display ValueDisplay value. -
lookupCode:
string
Title:
Label OptionLable option.
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/productLine/servers/arraySets
Response Body Sample
{
"items": [{
"id": 36673330,
"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/arraySets/_sethardDrive_raid_array"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/arraySets/_sethardDrive_raid_array/translations"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/arraySets/_sethardDrive_raid_array/attributes"
}
],
"refType": 3,
"name": "Additional Hard Drive",
"variableName": "_sethardDrive_raid_array",
"desc": "",
"sizeAttrId": 36673037,
"defaultAttrId": 36673038,
"displayType": {
"lookupCode": "2",
"displayValue": "Vertical"
},
"labelOption": {
"lookupCode": "1",
"displayValue": "Display Only First Label"
},
"prefixText": "",
"suffixText": ""
}, {
"id": 36673355,
"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/arraySets/_setapplicationSoftware"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/arraySets/_setapplicationSoftware/translations"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/arraySets/_setapplicationSoftware/attributes"
}
],
"refType": 3,
"name": "Application Software",
"variableName": "_setapplicationSoftware",
"desc": "",
"sizeAttrId": 36673055,
"defaultAttrId": -1,
"displayType": {
"lookupCode": "1",
"displayValue": "Horizontal"
},
"labelOption": {
"lookupCode": "1",
"displayValue": "Display Only First Label"
},
"prefixText": "",
"suffixText": ""
}
],
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/arraySets"
}
]
}