Skip to content

Commit 0902bad

Browse files
committed
beta
1 parent 1787ccf commit 0902bad

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

internal/configcat/permission_group_resource.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,19 +241,19 @@ func (r *permissionGroupResource) Schema(ctx context.Context, req resource.Schem
241241
ElementType: types.StringType,
242242
},
243243
PermissionGroupApprovalPermissionType: schema.StringAttribute{
244-
Description: "Represents the permission group level change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom",
244+
Description: "Represents the permission group level change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom",
245245
Computed: true,
246246
Optional: true,
247247
Default: stringdefault.StaticString(string(sw.APPROVALPERMISSIONTYPE_CAN_BYPASS_APPROVAL)),
248248
},
249249
PermissionGroupNewEnvironmentApprovalType: schema.StringAttribute{
250-
Description: "Represents the environment specific change request approval permission for new Environments. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
250+
Description: "Represents the environment specific change request approval permission for new Environments. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
251251
Computed: true,
252252
Optional: true,
253253
Default: stringdefault.StaticString(string(sw.ENVIRONMENTAPPROVALPERMISSIONTYPE_CAN_BYPASS_APPROVAL)),
254254
},
255255
PermissionGroupEnvironmentApprovals: schema.MapAttribute{
256-
Description: "The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
256+
Description: "The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
257257
Computed: true,
258258
Optional: true,
259259
ElementType: types.StringType,

internal/configcat/product_preferences_resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ func (r *productPreferencesResource) Schema(ctx context.Context, req resource.Sc
104104
},
105105
},
106106
ProductPreferenceApproveRequired: schema.BoolAttribute{
107-
Description: "Indicates that a mandatory approval is required before changes are applied. Default: false.",
107+
Description: "Indicates that a mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta. Default: false.",
108108
Optional: true,
109109
Computed: true,
110110
Default: booldefault.StaticBool(false),
111111
},
112112
ProductPreferenceApproveRequiredEnvironments: schema.MapAttribute{
113-
Description: "The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied.",
113+
Description: "The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta.",
114114
Computed: true,
115115
Optional: true,
116116
ElementType: types.BoolType,

internal/configcat/setting_value_v2_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ func (r *settingValueV2Resource) Schema(ctx context.Context, req resource.Schema
351351
Optional: true,
352352
},
353353
BypassApproval: schema.BoolAttribute{
354-
Description: "Indicates whether the change should bypass the approval workflow.",
354+
Description: "Indicates whether the change should bypass the approval workflow. Approval Flow and Scheduled Changes are in closed beta.",
355355
Optional: true,
356356
},
357357
DefaultValue: createSettingValueSchema(true, nil),

0 commit comments

Comments
 (0)