Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SOAR-18657] Mimecast v2 tooltip #3074

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/mimecast_v2/.CHECKSUM
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"spec": "09e7a8073da54693bcc990b37ec6e2a4",
"spec": "a075e9a45f8da26b40eae68c765d196e",
"manifest": "e0e42959bee1c96589545b1afb0b1f61",
"setup": "ea867af34e3163ba06ef9660ec9023fc",
"schemas": [
{
"identifier": "connection/schema.py",
"hash": "8918ffcfac8cbf4e1b5696cb9dd9ddaf"
"hash": "3253f4b76caee91ee0f0cdc596b64a98"
},
{
"identifier": "monitor_siem_logs/schema.py",
Expand Down
4 changes: 2 additions & 2 deletions plugins/mimecast_v2/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The connection configuration accepts the following parameters:

|Name|Type|Default|Required|Description|Enum|Example|Placeholder|Tooltip|
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
|client_id|credential_secret_key|None|True|The Mimecast 2.0 Application Client ID|None|ZA7vkbu7NqcfBcGrXyWW8Rzk2sv2un2DCY7GGCX4BFWgJBZM|None|None|
|client_secret|credential_secret_key|None|True|The Mimecast 2.0 Application Client Secret|None|ohknqKJpCd99XTkHjeVuc2TgYaKWrWn4tEEHCLkXFZhFgDRdcpNGVx3EipX2CvmE|None|None|
|client_id|credential_secret_key|None|True|The Mimecast 2.0 Application Client ID|None|ZA7vkbu7NqcfBcGrXyWW8Rzk2sv2un2DCY7GGCX4BFWgJBZM|Client ID|Enter the Client ID obtained from the Mimecast 2.0 API Application|
|client_secret|credential_secret_key|None|True|The Mimecast 2.0 Application Client Secret|None|ohknqKJpCd99XTkHjeVuc2TgYaKWrWn4tEEHCLkXFZhFgDRdcpNGVx3EipX2CvmE|Client Secret|Enter the Client ID obtained from the Mimecast 2.0 API Application|

Example input:

Expand Down
4 changes: 4 additions & 0 deletions plugins/mimecast_v2/icon_mimecast_v2/connection/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@ class ConnectionSchema(insightconnect_plugin_runtime.Input):
"$ref": "#/definitions/credential_secret_key",
"title": "Client ID",
"description": "The Mimecast 2.0 Application Client ID",
"placeholder": "Client ID",
"tooltip": "Enter the Client ID obtained from the Mimecast 2.0 API Application",
"order": 1
},
"client_secret": {
"$ref": "#/definitions/credential_secret_key",
"title": "Client Secret",
"description": "The Mimecast 2.0 Application Client Secret",
"placeholder": "Client Secret",
"tooltip": "Enter the Client ID obtained from the Mimecast 2.0 API Application",
"order": 2
}
},
Expand Down
4 changes: 4 additions & 0 deletions plugins/mimecast_v2/plugin.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,16 @@ connection:
type: credential_secret_key
example: ZA7vkbu7NqcfBcGrXyWW8Rzk2sv2un2DCY7GGCX4BFWgJBZM
required: true
placeholder: Client ID
tooltip: Enter the Client ID obtained from the Mimecast 2.0 API Application
client_secret:
title: Client Secret
description: The Mimecast 2.0 Application Client Secret
type: credential_secret_key
example: ohknqKJpCd99XTkHjeVuc2TgYaKWrWn4tEEHCLkXFZhFgDRdcpNGVx3EipX2CvmE
required: true
placeholder: Client Secret
tooltip: Enter the Client ID obtained from the Mimecast 2.0 API Application
tasks:
monitor_siem_logs:
title: Monitor SIEM Logs
Expand Down
Loading