You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "The API path on top of the base URL set in the provider that represents objects of this type on the API server.",
28
28
Required: true,
29
29
},
30
+
"create_path": &schema.Schema{
31
+
Type: schema.TypeString,
32
+
Description: "Defaults to `path`. The API path on top of the base URL set in the provider that represents where to WRITE (POST) objects of this type on the API server.",
33
+
Optional: true,
34
+
},
35
+
"read_path": &schema.Schema{
36
+
Type: schema.TypeString,
37
+
Description: "Defaults to `path`. The API path on top of the base URL set in the provider that represents where to READ (GET) objects of this type on the API server.",
38
+
Optional: true,
39
+
},
40
+
"update_path": &schema.Schema{
41
+
Type: schema.TypeString,
42
+
Description: "Defaults to `path`. The API path on top of the base URL set in the provider that represents where to MODIFY (PUT) objects of this type on the API server.",
43
+
Optional: true,
44
+
},
45
+
"destroy_path": &schema.Schema{
46
+
Type: schema.TypeString,
47
+
Description: "Defaults to `path`. The API path on top of the base URL set in the provider that represents where to DESTROY (DELETE) objects of this type on the API server.",
48
+
Optional: true,
49
+
},
30
50
"data": &schema.Schema{
31
51
Type: schema.TypeString,
32
52
Description: "Valid JSON data that this provider will manage with the API server.",
0 commit comments