Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutisuryawanshigenesys committed Jul 16, 2024
1 parent a6ae265 commit 269021e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/data-sources/supported_content.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ description: |-

Genesys Cloud supported content data source. Select an supported content by name

## Example Usage

```terraform
data "genesyscloud_supported_content" "Test Supported Content" {
name = "Supported_Content_1"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
14 changes: 13 additions & 1 deletion docs/resources/supported_content.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,22 @@ Genesys Cloud supported content
## API Usage
The following Genesys Cloud APIs are used by this resource. Ensure your OAuth Client has been granted the necessary scopes and permissions to perform these operations:

**No APIs**
* [POST /api/v2/conversations/messaging/supportedcontent](https://developer.genesys.cloud/devapps/api-explorer#post-api-v2-conversations-messaging-supportedcontent)
* [GET /api/v2/conversations/messaging/supportedcontent/{supportedContentId}](https://developer.genesys.cloud/devapps/api-explorer#get-api-v2-conversations-messaging-supportedcontent--supportedContentId-)
* [PATCH /api/v2/conversations/messaging/supportedcontent/{supportedContentId}](https://developer.genesys.cloud/devapps/api-explorer#patch-api-v2-conversations-messaging-supportedcontent--supportedContentId-)
* [DELETE /api/v2/conversations/messaging/supportedcontent/{supportedContentId}](https://developer.genesys.cloud/devapps/api-explorer#delete-api-v2-conversations-messaging-supportedcontent--supportedContentId-)
* [GET /api/v2/conversations/messaging/supportedcontent](https://developer.genesys.cloud/devapps/api-explorer#get-api-v2-conversations-messaging-supportedcontent)



## Example Usage

```terraform
resource "genesyscloud_supported_content" "supported_content" {
name = "test supported_content"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
data "genesyscloud_supported_content" "Test Supported Content" {
name = "Supported_Content_1"
}
3 changes: 3 additions & 0 deletions examples/resources/genesyscloud_supported_content/resource.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resource "genesyscloud_supported_content" "supported_content" {
name = "test supported_content"
}

0 comments on commit 269021e

Please sign in to comment.