Skip to content

Commit 9857c32

Browse files
committed
Update docs before release
1 parent ed463ee commit 9857c32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/resources/object.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ description: |-
1515

1616
### Required
1717

18-
- **data** (String, Required) Valid JSON data that this provider will manage with the API server.
18+
- **data** (String, Required) Valid JSON object that this provider will manage with the API server.
1919
- **path** (String, Required) The API path on top of the base URL set in the provider that represents objects of this type on the API server.
2020

2121
### Optional
2222

2323
- **create_method** (String, Optional) Defaults to `create_method` set on the provider. Allows per-resource override of `create_method` (see `create_method` provider config documentation)
2424
- **create_path** (String, Optional) Defaults to `path`. The API path that represents where to CREATE (POST) objects of this type on the API server. The string `{id}` will be replaced with the terraform ID of the object if the data contains the `id_attribute`.
2525
- **debug** (Boolean, Optional) Whether to emit verbose debug output while working with the API object on the server.
26+
- **destroy_data** (String, Optional) Valid JSON object to pass during to destroy requests.
2627
- **destroy_method** (String, Optional) Defaults to `destroy_method` set on the provider. Allows per-resource override of `destroy_method` (see `destroy_method` provider config documentation)
27-
- **destroy_data** (String, Optional) Valid JSON data that this provider will send to the API server on DESTROY (DELETE) operations. If not set, defaults to the value of `data`.
2828
- **destroy_path** (String, Optional) Defaults to `path/{id}`. The API path that represents where to DESTROY (DELETE) objects of this type on the API server. The string `{id}` will be replaced with the terraform ID of the object.
2929
- **force_new** (List of String, Optional) Any changes to these values will result in recreating the resource instead of updating.
3030
- **id** (String, Optional) The ID of this resource.
@@ -34,8 +34,8 @@ description: |-
3434
- **read_method** (String, Optional) Defaults to `read_method` set on the provider. Allows per-resource override of `read_method` (see `read_method` provider config documentation)
3535
- **read_path** (String, Optional) Defaults to `path/{id}`. The API path that represents where to READ (GET) objects of this type on the API server. The string `{id}` will be replaced with the terraform ID of the object.
3636
- **read_search** (Map of String, Optional) Custom search for `read_path`. This map will take `search_key`, `search_value`, `results_key` and `query_string` (see datasource config documentation)
37+
- **update_data** (String, Optional) Valid JSON object to pass during to update requests.
3738
- **update_method** (String, Optional) Defaults to `update_method` set on the provider. Allows per-resource override of `update_method` (see `update_method` provider config documentation)
38-
- **update_data** (String, Optional) Valid JSON data that this provider will send to the API server on UPDATE (PUT) operations. If not set, defaults to the value of `data`.
3939
- **update_path** (String, Optional) Defaults to `path/{id}`. The API path that represents where to UPDATE (PUT) objects of this type on the API server. The string `{id}` will be replaced with the terraform ID of the object.
4040

4141
### Read-only

0 commit comments

Comments
 (0)