em_asr_asset_include_list

Adds or removes target to or from the Oracle Auto Service Request (ASR) include list.

Format

Standard Mode

emcli em_asr_asset_include_list
      [-add]
      [-remove]
      [-all]
      [-targetName="Target Name"]
      [-targetType="Target Type"]

Interactive or Script Mode

em_asr_asset_include_list(
      [add=True/False]
      [,remove=True/False]
      [,all=True/False]
      [,targetName="Target Name"]
      [,targetType="Target Type"]

[ ]  indicates that the parameter is optional.

Options

  • add

    Adds targets to the Oracle ASR include list.

  • remove

    Removes targets from the Oracle ASR include list.

  • all

    Sets a flag to select all eligible ASR targets.

  • targetName

    Identifies the target name.

  • targetType

    Identifies the target type.

Exit Codes

0 if successful. A non-zero value indicates that verb processing was unsuccessful.

Example

Example 1

Adds all targets to the Oracle ASR include list:

Standard Mode

emcli em_asr_asset_include_list
      -add
      -all

Interactive or Script Mode

em_asr_asset_include_list(
      add=True,
      all=True
)

Example 2

Removes all targets from the Oracle ASR include list:

Standard Mode

emcli em_asr_asset_include_list
      -remove
      -all

Interactive or Script Mode

em_asr_asset_include_list(
      remove=True,
      all=True
      )