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
Copy file name to clipboardExpand all lines: docs/resources/transformer.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ Optional:
45
45
46
46
-`fields` (Attributes List) The set of fields associated with a column of type composite. Fields cannot be specified if the column type is not composite. (see [below for nested schema](#nestedatt--input_type_constraints--fields))
47
47
-`immutable_required` (Boolean) Can be enabled when unique_id_required is enabled. If true, values for the associated column cannot be modified, but can be added or removed.
48
+
-`partial_updates` (Boolean) Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.
48
49
-`unique_id_required` (Boolean) Can be enabled for column type composite or address. If true, each value for the associated column must have a unique string ID, which can either be provided or generated by backend.
49
50
-`unique_required` (Boolean) If true, each value for the associated column must be unique for the user. This is primarily useful for array columns.
50
51
@@ -72,6 +73,7 @@ Optional:
72
73
73
74
-`fields` (Attributes List) The set of fields associated with a column of type composite. Fields cannot be specified if the column type is not composite. (see [below for nested schema](#nestedatt--output_type_constraints--fields))
74
75
-`immutable_required` (Boolean) Can be enabled when unique_id_required is enabled. If true, values for the associated column cannot be modified, but can be added or removed.
76
+
-`partial_updates` (Boolean) Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.
75
77
-`unique_id_required` (Boolean) Can be enabled for column type composite or address. If true, each value for the associated column must have a unique string ID, which can either be provided or generated by backend.
76
78
-`unique_required` (Boolean) If true, each value for the associated column must be unique for the user. This is primarily useful for array columns.
Copy file name to clipboardExpand all lines: docs/resources/userstore_column.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ Optional:
48
48
49
49
-`fields` (Attributes List) The set of fields associated with a column of type composite. Fields cannot be specified if the column type is not composite. (see [below for nested schema](#nestedatt--constraints--fields))
50
50
-`immutable_required` (Boolean) Can be enabled when unique_id_required is enabled. If true, values for the associated column cannot be modified, but can be added or removed.
51
+
-`partial_updates` (Boolean) Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.
51
52
-`unique_id_required` (Boolean) Can be enabled for column type composite or address. If true, each value for the associated column must have a unique string ID, which can either be provided or generated by backend.
52
53
-`unique_required` (Boolean) If true, each value for the associated column must be unique for the user. This is primarily useful for array columns.
@@ -3162,6 +3164,7 @@ var UserstoreColumnConstraintsAttrTypes = map[string]attr.Type{
3162
3164
},
3163
3165
},
3164
3166
"immutable_required": types.BoolType,
3167
+
"partial_updates": types.BoolType,
3165
3168
"unique_id_required": types.BoolType,
3166
3169
"unique_required": types.BoolType,
3167
3170
}
@@ -3183,6 +3186,12 @@ var UserstoreColumnConstraintsAttributes = map[string]schema.Attribute{
3183
3186
MarkdownDescription: "Can be enabled when unique_id_required is enabled. If true, values for the associated column cannot be modified, but can be added or removed.",
3184
3187
Optional: true,
3185
3188
},
3189
+
"partial_updates": schema.BoolAttribute{
3190
+
Computed: true,
3191
+
Description: "Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.",
3192
+
MarkdownDescription: "Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.",
3193
+
Optional: true,
3194
+
},
3186
3195
"unique_id_required": schema.BoolAttribute{
3187
3196
Computed: true,
3188
3197
Description: "Can be enabled for column type composite or address. If true, each value for the associated column must have a unique string ID, which can either be provided or generated by backend.",
@@ -2850,6 +2852,7 @@ var UserstoreColumnConstraintsAttrTypes = map[string]attr.Type{
2850
2852
},
2851
2853
},
2852
2854
"immutable_required": types.BoolType,
2855
+
"partial_updates": types.BoolType,
2853
2856
"unique_id_required": types.BoolType,
2854
2857
"unique_required": types.BoolType,
2855
2858
}
@@ -2871,6 +2874,12 @@ var UserstoreColumnConstraintsAttributes = map[string]schema.Attribute{
2871
2874
MarkdownDescription: "Can be enabled when unique_id_required is enabled. If true, values for the associated column cannot be modified, but can be added or removed.",
2872
2875
Optional: true,
2873
2876
},
2877
+
"partial_updates": schema.BoolAttribute{
2878
+
Computed: true,
2879
+
Description: "Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.",
2880
+
MarkdownDescription: "Can be enabled for array columns that have UniqueRequired or UniqueIDRequired enabled. When enabled, a mutation request will update the specified subset of values for the associated column.",
2881
+
Optional: true,
2882
+
},
2874
2883
"unique_id_required": schema.BoolAttribute{
2875
2884
Computed: true,
2876
2885
Description: "Can be enabled for column type composite or address. If true, each value for the associated column must have a unique string ID, which can either be provided or generated by backend.",
0 commit comments