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
Manages a User Store column data type. For more details, refer to the [User Store documentation](https://docs.userclouds.com/docs/introduction).
12
+
13
+
14
+
15
+
<!-- schema generated by tfplugindocs -->
16
+
## Schema
17
+
18
+
### Required
19
+
20
+
-`name` (String)
21
+
22
+
### Optional
23
+
24
+
-`composite_attributes` (Attributes) (see [below for nested schema](#nestedatt--composite_attributes))
25
+
-`description` (String)
26
+
-`is_composite_field_type` (Boolean) Whether the data type can be used for a composite field.
27
+
-`is_native` (Boolean) Whether this is a native non-editable data type.
28
+
29
+
### Read-Only
30
+
31
+
-`id` (String) The ID of this resource.
32
+
33
+
<aid="nestedatt--composite_attributes"></a>
34
+
### Nested Schema for `composite_attributes`
35
+
36
+
Optional:
37
+
38
+
-`fields` (Attributes List) The set of fields associated with a composite data type. (see [below for nested schema](#nestedatt--composite_attributes--fields))
39
+
-`include_id` (Boolean) Whether the composite data type must include an id field.
### Nested Schema for `composite_attributes.fields`
43
+
44
+
Required:
45
+
46
+
-`name` (String) Each part of name must be capitalized or all-caps, separated by underscores. Names may contain alphanumeric characters, and the first part must start with a letter, while other parts may start with a number. (ex. ID_Field_1)
47
+
48
+
Optional:
49
+
50
+
-`camel_case_name` (String) Read-only camel-case version of field name, with underscores stripped out. (ex. IDField1)
51
+
-`data_type` (String)
52
+
-`ignore_for_uniqueness` (Boolean) If true, field value will be ignored when comparing two composite values for a uniqueness check.
53
+
-`required` (Boolean) Whether a value must be specified for the field.
54
+
-`struct_name` (String) Read-only snake-case version of field name, with all letters lowercase. (ex. id_field_1)
Copy file name to clipboardExpand all lines: genprovider/config.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,14 @@
12
12
}
13
13
},
14
14
"resources": [
15
+
{
16
+
"type_name_suffix": "userstore_column_data_type",
17
+
"description": "Manages a User Store column data type. For more details, refer to the User Store documentation: https://docs.userclouds.com/docs/introduction",
18
+
"markdown_description": "Manages a User Store column data type. For more details, refer to the [User Store documentation](https://docs.userclouds.com/docs/introduction).",
0 commit comments