-
Notifications
You must be signed in to change notification settings - Fork 70
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
Add AWS Rekognition moderation Add-On methods #140
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -360,6 +360,7 @@ post.picture.store | |||||||||||||||||||||||||||||||||||||
# ...other group data... | ||||||||||||||||||||||||||||||||||||||
# } | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# | ||||||||||||||||||||||||||||||||||||||
# Delete the file from an Uploadcare server permanently: | ||||||||||||||||||||||||||||||||||||||
post.picture.delete | ||||||||||||||||||||||||||||||||||||||
# => { | ||||||||||||||||||||||||||||||||||||||
|
@@ -422,6 +423,7 @@ post.attachments.store | |||||||||||||||||||||||||||||||||||||
# }] | ||||||||||||||||||||||||||||||||||||||
# } | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# | ||||||||||||||||||||||||||||||||||||||
# Delete the file group from an Uploadcare server permanently: | ||||||||||||||||||||||||||||||||||||||
post.attachments.delete | ||||||||||||||||||||||||||||||||||||||
# => { | ||||||||||||||||||||||||||||||||||||||
|
@@ -977,6 +979,25 @@ Uploadcare::AddonsApi.rekognition_detect_labels_status('dfeaf81c-5c0d-49d5-8ed4- | |||||||||||||||||||||||||||||||||||||
# => {"status"=>"done"} | ||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
#### Execute AWS Rekognition Moderation Add-On for a given target to detect moderation labels in an image. | ||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||
Note: Detected labels are stored in the file's appdata. | ||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
```ruby | ||||||||||||||||||||||||||||||||||||||
Uploadcare::AddonsApi.rekognition_detect_moderation_labels('f757ea10-8b1a-4361-9a7c-56bfa5d45176') | ||||||||||||||||||||||||||||||||||||||
# => {"request_id"=>"dfeaf81c-5c0d-49d5-8ed4-ac09bac7998e"} | ||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# Check the status of an AWS Rekognition Moderation Add-On execution request that had been started using the Execute Add-On operation. | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
```ruby | ||||||||||||||||||||||||||||||||||||||
Uploadcare::AddonsApi.rekognition_detect_moderation_labels_status('dfeaf81c-5c0d-49d5-8ed4-ac09bac7998e') | ||||||||||||||||||||||||||||||||||||||
# => {"status"=>"done"} | ||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
Comment on lines
+982
to
+998
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure there is a blank line after the heading for better readability and markdown formatting. #### Execute AWS Rekognition Moderation Add-On for a given target to detect moderation labels in an image.
+ Committable suggestion
Suggested change
Note: Detected labels are stored in the file's appdata.
Check the status of an AWS Rekognition Moderation Add-On execution request that had been started using the Execute Add-On operation.Uploadcare::AddonsApi.rekognition_detect_moderation_labels_status('dfeaf81c-5c0d-49d5-8ed4-ac09bac7998e')
# => {"status"=>"done"}
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
#### Execute ClamAV virus checking Add-On for a given target | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
```ruby | ||||||||||||||||||||||||||||||||||||||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove repeated word "Added" for clarity.
Committable suggestion