Skip to content

Commit

Permalink
Update Connector Schema (07-Jan-2025) (#407)
Browse files Browse the repository at this point in the history
* Update connector schema

* Update generated documentation/code

* Update changelog

---------

Co-authored-by: github-actions[bot] <[email protected]>
  • Loading branch information
github-actions[bot] and actions-user authored Jan 7, 2025
1 parent d35c066 commit a60eeea
Show file tree
Hide file tree
Showing 6 changed files with 320 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/407.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:note
Update Connector Reference Guide (07 January 2025).
```
26 changes: 26 additions & 0 deletions docs/guides/connector-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1266,6 +1266,32 @@ resource "davinci_connection" "castleConnector" {
```


## CLEAR

Connector ID (`connector_id` in the resource): `connectorClear`

Properties (used in the `property` block in the resource as the `name` parameter):

* `customAuth` (json): Console display name: "Custom Parameters".


Example:
```terraform
resource "davinci_connection" "connectorClear" {
environment_id = var.pingone_environment_id
connector_id = "connectorClear"
name = "My awesome connectorClear"
property {
name = "customAuth"
type = "json"
value = var.connectorclear_property_custom_auth
}
}
```


## Challenge

Connector ID (`connector_id` in the resource): `challengeConnector`
Expand Down
18 changes: 18 additions & 0 deletions dvgenerate/internal/connector_schema/connector-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1393,6 +1393,24 @@
}
}
},
{
"name": "CLEAR",
"connectorId": "connectorClear",
"connectorCategories": [
{
"name": "Verify",
"value": "verify"
}
],
"properties": {
"customAuth": {
"type": "array",
"displayName": "Custom Parameters",
"createdDate": 1694542169719,
"info": ""
}
}
},
{
"name": "Clearbit",
"connectorId": "connectorClearbit",
Expand Down
12 changes: 12 additions & 0 deletions examples/connectors/connectorClear.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "davinci_connection" "connectorClear" {
environment_id = var.pingone_environment_id

connector_id = "connectorClear"
name = "My awesome connectorClear"

property {
name = "customAuth"
type = "json"
value = var.connectorclear_property_custom_auth
}
}
Loading

0 comments on commit a60eeea

Please sign in to comment.