Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Sample Summarizer Connector can be configured using the Rest API. 

Easy Heading Free
navigationTitleOn this Page
wrapNavigationTexttrue
navigationExpandOptionexpand-all-by-default

Create Value Count Summarizer


Field

Required

Default

Multiple

NotesExample
typeYes-No

The value must be

"application"

“application”.

"application"

“application”

_typeYes-No

The value must be

"application"

“application”.

"application"

“application”

appNameYes-NoThe name of the application
"SampleSum"
“SampleSum”
appTypeYes-NoThe value must be
"sample
“sample-
summarizer"
summarizer”.
"sample
“sample-
summarizer"
summarizer”
configYes-NoThe value must be
"com
“com.accenture.aspire:app-sample-
summarizer"
summarizer”.
"com
“com.accenture.aspire:app-sample-
summarizer"
summarizer”
descriptionYes-NoThe description
"sample

“sample-

summarizer"

summarizer”

propertiesYes-NoConfiguration object
sampleSizeNo10NoThe number of samples to gather.15

Example

Code Block
themeRDark
titlePOST /aspire/_api/workflows/{workflow}/rules
{
  "type": "application",
  "_type": "application",
  "appName": "Sample_Summarizer",
  "appType": "sample-summarizer",
  "config": "com.accenture.aspire:app-sample-summarizer",
  "description": "sample summarizer",
  "properties": {
    "sampleSize": 15,
    "debug": false
  }
}

Update Value Count Summarizer


Field

Required

Default

Multiple

NotesExample
idYes-No
Id
ID of the application to update"45e89d93-9754-4b03-ade5-5781c43a1189"
typeYes-No

The value must be "application".

"application"

“application”

_typeYes-No

The value must be "application".

"application"

“application”

appNameYes-NoThe name of the application
"SampleSum"
“SampleSum”
appTypeYes-NoThe value must be
"sample
“sample-
summarizer"
summarizer”.
"sample
“sample-
summarizer"
summarizer”
configYes-NoThe value must be
"com
“com.accenture.aspire:app-sample-
summarizer"
summarizer”.
"com
“com.accenture.aspire:app-sample-
summarizer"
summarizer”
descriptionYes-NoThe description
"sample

“sample-

summarizer"

summarizer”

propertiesYes-NoConfiguration object
sampleSizeNo10NoThe number of samples to gather.15

Example

Code Block
themeRDark
titlePUT /aspire/_api/workflows/{workflow}/rules/{id}
{
  "id": "45e89d93-9754-4b03-ade5-5781c43a1189",
  "type": "application",
  "_type": "application",
  "appName": "Sample_Summarizer",
  "appType": "sample-summarizer",
  "config": "com.accenture.aspire:app-sample-summarizer",
  "description": "sample summarizer",
  "properties": {
    "sampleSize": 10,
    "debug": false
  }
}