Skip to content

Commit

Permalink
Added acceptance testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rainkwan committed Jan 17, 2025
1 parent 70fc6a9 commit db95a65
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ example resource
- `single_nested_block` (Block, Optional) example single nested block (see [below for nested schema](#nestedblock--single_nested_block))
- `single_nested_block_sensitive_nested_attribute` (Block, Optional) example sensitive single nested block (see [below for nested schema](#nestedblock--single_nested_block_sensitive_nested_attribute))
- `string_attribute` (String) example string attribute
- `write_only_string_attribute` (String, Write-only) example write-only string attribute

### Read-Only

Expand Down Expand Up @@ -418,6 +419,13 @@ scaffolding(stringInput string, boolInput bool, float64Input number, int64Input
"description": "example string attribute",
"description_kind": "markdown",
"optional": true
},
"write_only_string_attribute": {
"type": "string",
"description": "example write-only string attribute",
"description_kind": "markdown",
"optional": true,
"write_only": true
}
},
"block_types": {
Expand Down

0 comments on commit db95a65

Please sign in to comment.