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

Fix service_integration documentation #912

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

viasnake
Copy link

@viasnake viasnake commented Jul 20, 2024

Fix service_integration documentation.

body_mode, from_email_mode, and subject_mode of the Email filters can specified with the no-match option.
However, the documentation states that only always and match can be specified.

"subject_mode": {
Type: schema.TypeString,
Optional: true,
ValidateDiagFunc: validateValueDiagFunc([]string{
"always",
"match",
"no-match",
}),
},
"subject_regex": {
Type: schema.TypeString,
Optional: true,
},
"body_mode": {
Type: schema.TypeString,
Optional: true,
ValidateDiagFunc: validateValueDiagFunc([]string{
"always",
"match",
"no-match",
}),
},
"body_regex": {
Type: schema.TypeString,
Optional: true,
},
"from_email_mode": {
Type: schema.TypeString,
Optional: true,
ValidateDiagFunc: validateValueDiagFunc([]string{
"always",
"match",
"no-match",
}),
},

@viasnake viasnake changed the title Fix document email_filter options Fix email_filter document Jul 20, 2024
@viasnake viasnake changed the title Fix email_filter document Fix service_integration documentation Jul 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant