This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to scope for CPUs list in service builder?

Hi All,

I am trying to add the CPU components to my custom service builder list. It appears I'm doin' somethin' wrong.

Could one of you correct me where I am inputting the wrong object types please. Below is the one I am tryin'.

hostType !='null' and domain.displayName like 'Infrastructure%' and longName like 'CPUs%'

 

Thank You.

AJ

  • Could you try like this?
    HostCPUs : host.hostType != null and domain.displayName like 'Infrastructure%' and longName like 'CPUs%'
    Thanks,
    Sangeetha

  • this will work in rule scope, but in service builder it is givin' error as I already tried these iterations...thanks for your reply
  • Hi AJ,

    I'm not sure what you're trying to achieve.  One cannot just add CPU components to a service.  A host object contains the CPU so one would add the desired host objects to a service.

  • Hi Rick, yes I thought I could add these just like I added hosts but later realized since CPU object types are part of Host objects this might not be possible.

     

    hostType !='null' and domain.displayName like 'Infrastructure%' and name like 'CPUs%'

     

    this resulted in 0 objects...which might mean there is no scope to dig it further.

     

    Thanks for confirming this Rick.

     

    Regards,

    AJ