launchdarkly_api 3.10.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (302) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +225 -223
  3. data/docs/Environment.md +1 -0
  4. data/docs/EnvironmentApprovalSettings.md +12 -0
  5. data/docs/FeatureFlagApprovalRequest.md +18 -0
  6. data/docs/{FeatureFlagChangeRequestApplyConfigBody.md → FeatureFlagApprovalRequestApplyConfigBody.md} +1 -1
  7. data/docs/{FeatureFlagChangeRequestConfigBody.md → FeatureFlagApprovalRequestConfigBody.md} +1 -1
  8. data/docs/{FeatureFlagChangeRequestReview.md → FeatureFlagApprovalRequestReview.md} +3 -3
  9. data/docs/{FeatureFlagChangeRequestReviewConfigBody.md → FeatureFlagApprovalRequestReviewConfigBody.md} +2 -2
  10. data/docs/{FeatureFlagChangeRequestReviewStatus.md → FeatureFlagApprovalRequestReviewStatus.md} +1 -1
  11. data/docs/{FeatureFlagChangeRequests.md → FeatureFlagApprovalRequests.md} +2 -2
  12. data/docs/FeatureFlagsApi.md +120 -51
  13. data/launchdarkly_api.gemspec +1 -1
  14. data/lib/launchdarkly_api.rb +9 -8
  15. data/lib/launchdarkly_api/api/access_tokens_api.rb +1 -1
  16. data/lib/launchdarkly_api/api/audit_log_api.rb +1 -1
  17. data/lib/launchdarkly_api/api/custom_roles_api.rb +1 -1
  18. data/lib/launchdarkly_api/api/customer_metrics_api.rb +1 -1
  19. data/lib/launchdarkly_api/api/data_export_destinations_api.rb +1 -1
  20. data/lib/launchdarkly_api/api/environments_api.rb +1 -1
  21. data/lib/launchdarkly_api/api/feature_flags_api.rb +178 -99
  22. data/lib/launchdarkly_api/api/integrations_api.rb +1 -1
  23. data/lib/launchdarkly_api/api/projects_api.rb +1 -1
  24. data/lib/launchdarkly_api/api/relay_proxy_configurations_api.rb +1 -1
  25. data/lib/launchdarkly_api/api/root_api.rb +1 -1
  26. data/lib/launchdarkly_api/api/team_members_api.rb +1 -1
  27. data/lib/launchdarkly_api/api/user_segments_api.rb +1 -1
  28. data/lib/launchdarkly_api/api/user_settings_api.rb +1 -1
  29. data/lib/launchdarkly_api/api/users_api.rb +1 -1
  30. data/lib/launchdarkly_api/api/webhooks_api.rb +1 -1
  31. data/lib/launchdarkly_api/api_client.rb +1 -1
  32. data/lib/launchdarkly_api/api_error.rb +1 -1
  33. data/lib/launchdarkly_api/configuration.rb +1 -1
  34. data/lib/launchdarkly_api/models/audit_log_entries.rb +1 -1
  35. data/lib/launchdarkly_api/models/audit_log_entry.rb +1 -1
  36. data/lib/launchdarkly_api/models/audit_log_entry_target.rb +1 -1
  37. data/lib/launchdarkly_api/models/clause.rb +1 -1
  38. data/lib/launchdarkly_api/models/client_side_availability.rb +1 -1
  39. data/lib/launchdarkly_api/models/copy_actions.rb +1 -1
  40. data/lib/launchdarkly_api/models/custom_property.rb +1 -1
  41. data/lib/launchdarkly_api/models/custom_property_values.rb +1 -1
  42. data/lib/launchdarkly_api/models/custom_role.rb +1 -1
  43. data/lib/launchdarkly_api/models/custom_role_body.rb +1 -1
  44. data/lib/launchdarkly_api/models/custom_roles.rb +1 -1
  45. data/lib/launchdarkly_api/models/defaults.rb +1 -1
  46. data/lib/launchdarkly_api/models/destination.rb +1 -1
  47. data/lib/launchdarkly_api/models/destination_amazon_kinesis.rb +1 -1
  48. data/lib/launchdarkly_api/models/destination_body.rb +1 -1
  49. data/lib/launchdarkly_api/models/destination_google_pub_sub.rb +1 -1
  50. data/lib/launchdarkly_api/models/destination_m_particle.rb +1 -1
  51. data/lib/launchdarkly_api/models/destination_segment.rb +1 -1
  52. data/lib/launchdarkly_api/models/destinations.rb +1 -1
  53. data/lib/launchdarkly_api/models/environment.rb +14 -5
  54. data/lib/launchdarkly_api/models/environment_approval_settings.rb +259 -0
  55. data/lib/launchdarkly_api/models/environment_post.rb +1 -1
  56. data/lib/launchdarkly_api/models/evaluation_usage_error.rb +1 -1
  57. data/lib/launchdarkly_api/models/events.rb +1 -1
  58. data/lib/launchdarkly_api/models/fallthrough.rb +1 -1
  59. data/lib/launchdarkly_api/models/feature_flag.rb +1 -1
  60. data/lib/launchdarkly_api/models/{feature_flag_change_request.rb → feature_flag_approval_request.rb} +9 -18
  61. data/lib/launchdarkly_api/models/{feature_flag_change_request_apply_config_body.rb → feature_flag_approval_request_apply_config_body.rb} +2 -2
  62. data/lib/launchdarkly_api/models/{feature_flag_change_request_config_body.rb → feature_flag_approval_request_config_body.rb} +2 -2
  63. data/lib/launchdarkly_api/models/{feature_flag_change_request_review.rb → feature_flag_approval_request_review.rb} +4 -4
  64. data/lib/launchdarkly_api/models/{feature_flag_change_request_review_config_body.rb → feature_flag_approval_request_review_config_body.rb} +5 -5
  65. data/lib/launchdarkly_api/models/{feature_flag_change_request_review_status.rb → feature_flag_approval_request_review_status.rb} +4 -4
  66. data/lib/launchdarkly_api/models/{feature_flag_change_requests.rb → feature_flag_approval_requests.rb} +3 -3
  67. data/lib/launchdarkly_api/models/feature_flag_body.rb +1 -1
  68. data/lib/launchdarkly_api/models/feature_flag_config.rb +1 -1
  69. data/lib/launchdarkly_api/models/feature_flag_copy_body.rb +1 -1
  70. data/lib/launchdarkly_api/models/feature_flag_copy_object.rb +1 -1
  71. data/lib/launchdarkly_api/models/feature_flag_scheduled_change.rb +1 -1
  72. data/lib/launchdarkly_api/models/feature_flag_scheduled_changes.rb +1 -1
  73. data/lib/launchdarkly_api/models/feature_flag_scheduled_changes_conflicts.rb +1 -1
  74. data/lib/launchdarkly_api/models/feature_flag_scheduled_changes_conflicts_instructions.rb +1 -1
  75. data/lib/launchdarkly_api/models/feature_flag_status.rb +1 -1
  76. data/lib/launchdarkly_api/models/feature_flag_status_across_environments.rb +1 -1
  77. data/lib/launchdarkly_api/models/feature_flag_status_for_queried_environment.rb +1 -1
  78. data/lib/launchdarkly_api/models/feature_flag_statuses.rb +1 -1
  79. data/lib/launchdarkly_api/models/feature_flags.rb +1 -1
  80. data/lib/launchdarkly_api/models/flag_list_item.rb +1 -1
  81. data/lib/launchdarkly_api/models/hierarchical_links.rb +1 -1
  82. data/lib/launchdarkly_api/models/id.rb +1 -1
  83. data/lib/launchdarkly_api/models/integration.rb +1 -1
  84. data/lib/launchdarkly_api/models/integration__links.rb +1 -1
  85. data/lib/launchdarkly_api/models/integration_subscription.rb +1 -1
  86. data/lib/launchdarkly_api/models/integration_subscription__status.rb +1 -1
  87. data/lib/launchdarkly_api/models/integrations.rb +1 -1
  88. data/lib/launchdarkly_api/models/link.rb +1 -1
  89. data/lib/launchdarkly_api/models/links.rb +1 -1
  90. data/lib/launchdarkly_api/models/ma_uby_category.rb +1 -1
  91. data/lib/launchdarkly_api/models/mau.rb +1 -1
  92. data/lib/launchdarkly_api/models/mau_metadata.rb +1 -1
  93. data/lib/launchdarkly_api/models/member.rb +1 -1
  94. data/lib/launchdarkly_api/models/members.rb +1 -1
  95. data/lib/launchdarkly_api/models/members_body.rb +1 -1
  96. data/lib/launchdarkly_api/models/patch_comment.rb +1 -1
  97. data/lib/launchdarkly_api/models/patch_operation.rb +1 -1
  98. data/lib/launchdarkly_api/models/policy.rb +1 -1
  99. data/lib/launchdarkly_api/models/prerequisite.rb +1 -1
  100. data/lib/launchdarkly_api/models/project.rb +1 -1
  101. data/lib/launchdarkly_api/models/project_body.rb +1 -1
  102. data/lib/launchdarkly_api/models/projects.rb +1 -1
  103. data/lib/launchdarkly_api/models/relay_proxy_config.rb +1 -1
  104. data/lib/launchdarkly_api/models/relay_proxy_config_body.rb +1 -1
  105. data/lib/launchdarkly_api/models/relay_proxy_configs.rb +1 -1
  106. data/lib/launchdarkly_api/models/role.rb +1 -1
  107. data/lib/launchdarkly_api/models/rollout.rb +1 -1
  108. data/lib/launchdarkly_api/models/rule.rb +1 -1
  109. data/lib/launchdarkly_api/models/scheduled_changes_feature_flag_conflict.rb +1 -1
  110. data/lib/launchdarkly_api/models/semantic_patch_instruction.rb +1 -1
  111. data/lib/launchdarkly_api/models/semantic_patch_instruction_inner.rb +1 -1
  112. data/lib/launchdarkly_api/models/semantic_patch_operation.rb +1 -1
  113. data/lib/launchdarkly_api/models/site.rb +1 -1
  114. data/lib/launchdarkly_api/models/statement.rb +1 -1
  115. data/lib/launchdarkly_api/models/stream.rb +1 -1
  116. data/lib/launchdarkly_api/models/stream_by_sdk.rb +1 -1
  117. data/lib/launchdarkly_api/models/stream_by_sdk_links.rb +1 -1
  118. data/lib/launchdarkly_api/models/stream_by_sdk_links_metadata.rb +1 -1
  119. data/lib/launchdarkly_api/models/stream_links.rb +1 -1
  120. data/lib/launchdarkly_api/models/stream_sdk_version.rb +1 -1
  121. data/lib/launchdarkly_api/models/stream_sdk_version_data.rb +1 -1
  122. data/lib/launchdarkly_api/models/stream_usage_error.rb +1 -1
  123. data/lib/launchdarkly_api/models/stream_usage_links.rb +1 -1
  124. data/lib/launchdarkly_api/models/stream_usage_metadata.rb +1 -1
  125. data/lib/launchdarkly_api/models/stream_usage_series.rb +1 -1
  126. data/lib/launchdarkly_api/models/streams.rb +1 -1
  127. data/lib/launchdarkly_api/models/subscription_body.rb +1 -1
  128. data/lib/launchdarkly_api/models/target.rb +1 -1
  129. data/lib/launchdarkly_api/models/token.rb +1 -1
  130. data/lib/launchdarkly_api/models/token_body.rb +1 -1
  131. data/lib/launchdarkly_api/models/tokens.rb +1 -1
  132. data/lib/launchdarkly_api/models/unbounded_segment_target_changes.rb +1 -1
  133. data/lib/launchdarkly_api/models/unbounded_segment_targets_body.rb +1 -1
  134. data/lib/launchdarkly_api/models/usage.rb +1 -1
  135. data/lib/launchdarkly_api/models/usage_error.rb +1 -1
  136. data/lib/launchdarkly_api/models/usage_links.rb +1 -1
  137. data/lib/launchdarkly_api/models/user.rb +1 -1
  138. data/lib/launchdarkly_api/models/user_flag_setting.rb +1 -1
  139. data/lib/launchdarkly_api/models/user_flag_settings.rb +1 -1
  140. data/lib/launchdarkly_api/models/user_record.rb +1 -1
  141. data/lib/launchdarkly_api/models/user_segment.rb +1 -1
  142. data/lib/launchdarkly_api/models/user_segment_body.rb +1 -1
  143. data/lib/launchdarkly_api/models/user_segment_rule.rb +1 -1
  144. data/lib/launchdarkly_api/models/user_segments.rb +1 -1
  145. data/lib/launchdarkly_api/models/user_settings_body.rb +1 -1
  146. data/lib/launchdarkly_api/models/user_targeting_expiration_for_flag.rb +1 -1
  147. data/lib/launchdarkly_api/models/user_targeting_expiration_for_flags.rb +1 -1
  148. data/lib/launchdarkly_api/models/user_targeting_expiration_for_segment.rb +1 -1
  149. data/lib/launchdarkly_api/models/user_targeting_expiration_on_flags_for_user.rb +1 -1
  150. data/lib/launchdarkly_api/models/user_targeting_expiration_resource_id_for_flag.rb +1 -1
  151. data/lib/launchdarkly_api/models/users.rb +1 -1
  152. data/lib/launchdarkly_api/models/variation.rb +1 -1
  153. data/lib/launchdarkly_api/models/webhook.rb +1 -1
  154. data/lib/launchdarkly_api/models/webhook_body.rb +1 -1
  155. data/lib/launchdarkly_api/models/webhooks.rb +1 -1
  156. data/lib/launchdarkly_api/models/weighted_variation.rb +1 -1
  157. data/lib/launchdarkly_api/version.rb +2 -2
  158. data/openapi.yml +122 -69
  159. data/spec/api/access_tokens_api_spec.rb +1 -1
  160. data/spec/api/audit_log_api_spec.rb +1 -1
  161. data/spec/api/custom_roles_api_spec.rb +1 -1
  162. data/spec/api/customer_metrics_api_spec.rb +1 -1
  163. data/spec/api/data_export_destinations_api_spec.rb +1 -1
  164. data/spec/api/environments_api_spec.rb +1 -1
  165. data/spec/api/feature_flags_api_spec.rb +43 -26
  166. data/spec/api/integrations_api_spec.rb +1 -1
  167. data/spec/api/projects_api_spec.rb +1 -1
  168. data/spec/api/relay_proxy_configurations_api_spec.rb +1 -1
  169. data/spec/api/root_api_spec.rb +1 -1
  170. data/spec/api/team_members_api_spec.rb +1 -1
  171. data/spec/api/user_segments_api_spec.rb +1 -1
  172. data/spec/api/user_settings_api_spec.rb +1 -1
  173. data/spec/api/users_api_spec.rb +1 -1
  174. data/spec/api/webhooks_api_spec.rb +1 -1
  175. data/spec/api_client_spec.rb +1 -1
  176. data/spec/configuration_spec.rb +1 -1
  177. data/spec/models/audit_log_entries_spec.rb +1 -1
  178. data/spec/models/audit_log_entry_spec.rb +1 -1
  179. data/spec/models/audit_log_entry_target_spec.rb +1 -1
  180. data/spec/models/clause_spec.rb +1 -1
  181. data/spec/models/client_side_availability_spec.rb +1 -1
  182. data/spec/models/copy_actions_spec.rb +1 -1
  183. data/spec/models/custom_property_spec.rb +1 -1
  184. data/spec/models/custom_property_values_spec.rb +1 -1
  185. data/spec/models/custom_role_body_spec.rb +1 -1
  186. data/spec/models/custom_role_spec.rb +1 -1
  187. data/spec/models/custom_roles_spec.rb +1 -1
  188. data/spec/models/defaults_spec.rb +1 -1
  189. data/spec/models/destination_amazon_kinesis_spec.rb +1 -1
  190. data/spec/models/destination_body_spec.rb +1 -1
  191. data/spec/models/destination_google_pub_sub_spec.rb +1 -1
  192. data/spec/models/destination_m_particle_spec.rb +1 -1
  193. data/spec/models/destination_segment_spec.rb +1 -1
  194. data/spec/models/destination_spec.rb +1 -1
  195. data/spec/models/destinations_spec.rb +1 -1
  196. data/spec/models/environment_approval_settings_spec.rb +69 -0
  197. data/spec/models/environment_post_spec.rb +1 -1
  198. data/spec/models/environment_spec.rb +7 -1
  199. data/spec/models/evaluation_usage_error_spec.rb +1 -1
  200. data/spec/models/events_spec.rb +1 -1
  201. data/spec/models/fallthrough_spec.rb +1 -1
  202. data/spec/models/{feature_flag_change_request_apply_config_body_spec.rb → feature_flag_approval_request_apply_config_body_spec.rb} +7 -7
  203. data/spec/models/{feature_flag_change_request_config_body_spec.rb → feature_flag_approval_request_config_body_spec.rb} +7 -7
  204. data/spec/models/{feature_flag_change_request_review_config_body_spec.rb → feature_flag_approval_request_review_config_body_spec.rb} +8 -8
  205. data/spec/models/{feature_flag_change_request_review_spec.rb → feature_flag_approval_request_review_spec.rb} +7 -7
  206. data/spec/models/{feature_flag_change_request_review_status_spec.rb → feature_flag_approval_request_review_status_spec.rb} +7 -7
  207. data/spec/models/{feature_flag_change_request_spec.rb → feature_flag_approval_request_spec.rb} +7 -13
  208. data/spec/models/{feature_flag_change_requests_spec.rb → feature_flag_approval_requests_spec.rb} +7 -7
  209. data/spec/models/feature_flag_body_spec.rb +1 -1
  210. data/spec/models/feature_flag_config_spec.rb +1 -1
  211. data/spec/models/feature_flag_copy_body_spec.rb +1 -1
  212. data/spec/models/feature_flag_copy_object_spec.rb +1 -1
  213. data/spec/models/feature_flag_scheduled_change_spec.rb +1 -1
  214. data/spec/models/feature_flag_scheduled_changes_conflicts_instructions_spec.rb +1 -1
  215. data/spec/models/feature_flag_scheduled_changes_conflicts_spec.rb +1 -1
  216. data/spec/models/feature_flag_scheduled_changes_spec.rb +1 -1
  217. data/spec/models/feature_flag_spec.rb +1 -1
  218. data/spec/models/feature_flag_status_across_environments_spec.rb +1 -1
  219. data/spec/models/feature_flag_status_for_queried_environment_spec.rb +1 -1
  220. data/spec/models/feature_flag_status_spec.rb +1 -1
  221. data/spec/models/feature_flag_statuses_spec.rb +1 -1
  222. data/spec/models/feature_flags_spec.rb +1 -1
  223. data/spec/models/flag_list_item_spec.rb +1 -1
  224. data/spec/models/hierarchical_links_spec.rb +1 -1
  225. data/spec/models/id_spec.rb +1 -1
  226. data/spec/models/integration__links_spec.rb +1 -1
  227. data/spec/models/integration_spec.rb +1 -1
  228. data/spec/models/integration_subscription__status_spec.rb +1 -1
  229. data/spec/models/integration_subscription_spec.rb +1 -1
  230. data/spec/models/integrations_spec.rb +1 -1
  231. data/spec/models/link_spec.rb +1 -1
  232. data/spec/models/links_spec.rb +1 -1
  233. data/spec/models/ma_uby_category_spec.rb +1 -1
  234. data/spec/models/mau_metadata_spec.rb +1 -1
  235. data/spec/models/mau_spec.rb +1 -1
  236. data/spec/models/member_spec.rb +1 -1
  237. data/spec/models/members_body_spec.rb +1 -1
  238. data/spec/models/members_spec.rb +1 -1
  239. data/spec/models/patch_comment_spec.rb +1 -1
  240. data/spec/models/patch_operation_spec.rb +1 -1
  241. data/spec/models/policy_spec.rb +1 -1
  242. data/spec/models/prerequisite_spec.rb +1 -1
  243. data/spec/models/project_body_spec.rb +1 -1
  244. data/spec/models/project_spec.rb +1 -1
  245. data/spec/models/projects_spec.rb +1 -1
  246. data/spec/models/relay_proxy_config_body_spec.rb +1 -1
  247. data/spec/models/relay_proxy_config_spec.rb +1 -1
  248. data/spec/models/relay_proxy_configs_spec.rb +1 -1
  249. data/spec/models/role_spec.rb +1 -1
  250. data/spec/models/rollout_spec.rb +1 -1
  251. data/spec/models/rule_spec.rb +1 -1
  252. data/spec/models/scheduled_changes_feature_flag_conflict_spec.rb +1 -1
  253. data/spec/models/semantic_patch_instruction_inner_spec.rb +1 -1
  254. data/spec/models/semantic_patch_instruction_spec.rb +1 -1
  255. data/spec/models/semantic_patch_operation_spec.rb +1 -1
  256. data/spec/models/site_spec.rb +1 -1
  257. data/spec/models/statement_spec.rb +1 -1
  258. data/spec/models/stream_by_sdk_links_metadata_spec.rb +1 -1
  259. data/spec/models/stream_by_sdk_links_spec.rb +1 -1
  260. data/spec/models/stream_by_sdk_spec.rb +1 -1
  261. data/spec/models/stream_links_spec.rb +1 -1
  262. data/spec/models/stream_sdk_version_data_spec.rb +1 -1
  263. data/spec/models/stream_sdk_version_spec.rb +1 -1
  264. data/spec/models/stream_spec.rb +1 -1
  265. data/spec/models/stream_usage_error_spec.rb +1 -1
  266. data/spec/models/stream_usage_links_spec.rb +1 -1
  267. data/spec/models/stream_usage_metadata_spec.rb +1 -1
  268. data/spec/models/stream_usage_series_spec.rb +1 -1
  269. data/spec/models/streams_spec.rb +1 -1
  270. data/spec/models/subscription_body_spec.rb +1 -1
  271. data/spec/models/target_spec.rb +1 -1
  272. data/spec/models/token_body_spec.rb +1 -1
  273. data/spec/models/token_spec.rb +1 -1
  274. data/spec/models/tokens_spec.rb +1 -1
  275. data/spec/models/unbounded_segment_target_changes_spec.rb +1 -1
  276. data/spec/models/unbounded_segment_targets_body_spec.rb +1 -1
  277. data/spec/models/usage_error_spec.rb +1 -1
  278. data/spec/models/usage_links_spec.rb +1 -1
  279. data/spec/models/usage_spec.rb +1 -1
  280. data/spec/models/user_flag_setting_spec.rb +1 -1
  281. data/spec/models/user_flag_settings_spec.rb +1 -1
  282. data/spec/models/user_record_spec.rb +1 -1
  283. data/spec/models/user_segment_body_spec.rb +1 -1
  284. data/spec/models/user_segment_rule_spec.rb +1 -1
  285. data/spec/models/user_segment_spec.rb +1 -1
  286. data/spec/models/user_segments_spec.rb +1 -1
  287. data/spec/models/user_settings_body_spec.rb +1 -1
  288. data/spec/models/user_spec.rb +1 -1
  289. data/spec/models/user_targeting_expiration_for_flag_spec.rb +1 -1
  290. data/spec/models/user_targeting_expiration_for_flags_spec.rb +1 -1
  291. data/spec/models/user_targeting_expiration_for_segment_spec.rb +1 -1
  292. data/spec/models/user_targeting_expiration_on_flags_for_user_spec.rb +1 -1
  293. data/spec/models/user_targeting_expiration_resource_id_for_flag_spec.rb +1 -1
  294. data/spec/models/users_spec.rb +1 -1
  295. data/spec/models/variation_spec.rb +1 -1
  296. data/spec/models/webhook_body_spec.rb +1 -1
  297. data/spec/models/webhook_spec.rb +1 -1
  298. data/spec/models/webhooks_spec.rb +1 -1
  299. data/spec/models/weighted_variation_spec.rb +1 -1
  300. data/spec/spec_helper.rb +1 -1
  301. metadata +142 -138
  302. data/docs/FeatureFlagChangeRequest.md +0 -19
@@ -16,5 +16,6 @@ Name | Type | Description | Notes
16
16
  **tags** | **Array<String>** | An array of tags for this environment. | [optional]
17
17
  **require_comments** | **BOOLEAN** | Determines if this environment requires comments for flag and segment changes. | [optional]
18
18
  **confirm_changes** | **BOOLEAN** | Determines if this environment requires confirmation for flag and segment changes. | [optional]
19
+ **approval_settings** | [**EnvironmentApprovalSettings**](EnvironmentApprovalSettings.md) | | [optional]
19
20
 
20
21
 
@@ -0,0 +1,12 @@
1
+ # LaunchDarklyApi::EnvironmentApprovalSettings
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **service_kind** | **String** | The approvals system used. | [optional]
7
+ **required** | **BOOLEAN** | Whether any changes to flags in this environment will require approval. | [optional]
8
+ **can_review_own_request** | **BOOLEAN** | Whether requesters can approve or decline their own request. They may always comment. | [optional]
9
+ **min_num_approvals** | **Integer** | The number of approvals required before an approval request can be applied. | [optional]
10
+ **can_apply_declined_changes** | **BOOLEAN** | Whether changes can be applied as long as minNumApprovals is met, regardless of if any reviewers have declined a request. | [optional]
11
+
12
+
@@ -0,0 +1,18 @@
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **_id** | [**Id**](Id.md) | | [optional]
7
+ **_version** | **Integer** | | [optional]
8
+ **creation_date** | **Integer** | A unix epoch time in milliseconds specifying the date the approval request was requested | [optional]
9
+ **requestor_id** | **String** | The id of the member that requested the change | [optional]
10
+ **review_status** | [**FeatureFlagApprovalRequestReviewStatus**](FeatureFlagApprovalRequestReviewStatus.md) | | [optional]
11
+ **status** | **String** | | Name | Description | | --------:| ----------- | | pending | the feature flag approval request has not been applied yet | | completed| the feature flag approval request has been applied successfully | | failed | the feature flag approval request has been applied but the changes were not applied successfully | | [optional]
12
+ **applied_by_member_id** | **String** | The id of the member that applied the approval request | [optional]
13
+ **applied_date** | **Integer** | A unix epoch time in milliseconds specifying the date the approval request was applied | [optional]
14
+ **all_reviews** | [**Array<FeatureFlagApprovalRequestReview>**](FeatureFlagApprovalRequestReview.md) | | [optional]
15
+ **notify_member_ids** | **Array<String>** | | [optional]
16
+ **instructions** | [**SemanticPatchInstruction**](SemanticPatchInstruction.md) | | [optional]
17
+
18
+
@@ -1,4 +1,4 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequestApplyConfigBody
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequestApplyConfigBody
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
@@ -1,4 +1,4 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequestConfigBody
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequestConfigBody
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
@@ -1,10 +1,10 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequestReview
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequestReview
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **creation_date** | **Integer** | A unix epoch time in milliseconds specifying the date the change request was reviewed | [optional]
7
- **kind** | [**FeatureFlagChangeRequestReviewStatus**](FeatureFlagChangeRequestReviewStatus.md) | | [optional]
6
+ **creation_date** | **Integer** | A unix epoch time in milliseconds specifying the date the approval request was reviewed | [optional]
7
+ **kind** | [**FeatureFlagApprovalRequestReviewStatus**](FeatureFlagApprovalRequestReviewStatus.md) | | [optional]
8
8
  **member_id** | [**Id**](Id.md) | | [optional]
9
9
  **_id** | [**Id**](Id.md) | | [optional]
10
10
 
@@ -1,9 +1,9 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequestReviewConfigBody
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequestReviewConfigBody
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **kind** | **String** | Either approve or decline change request |
6
+ **kind** | **String** | One of approve, decline, or comment. |
7
7
  **comment** | **String** | comment will be included in audit log item for change. | [optional]
8
8
 
9
9
 
@@ -1,4 +1,4 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequestReviewStatus
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequestReviewStatus
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
@@ -1,9 +1,9 @@
1
- # LaunchDarklyApi::FeatureFlagChangeRequests
1
+ # LaunchDarklyApi::FeatureFlagApprovalRequests
2
2
 
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **_links** | [**Links**](Links.md) | | [optional]
7
- **items** | [**Array<FeatureFlagChangeRequest>**](FeatureFlagChangeRequest.md) | | [optional]
7
+ **items** | [**Array<FeatureFlagApprovalRequest>**](FeatureFlagApprovalRequest.md) | | [optional]
8
8
 
9
9
 
@@ -6,20 +6,21 @@ Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
7
  [**copy_feature_flag**](FeatureFlagsApi.md#copy_feature_flag) | **POST** /flags/{projectKey}/{featureFlagKey}/copy | Copies the feature flag configuration from one environment to the same feature flag in another environment.
8
8
  [**delete_feature_flag**](FeatureFlagsApi.md#delete_feature_flag) | **DELETE** /flags/{projectKey}/{featureFlagKey} | Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.
9
+ [**delete_feature_flag_approval_request**](FeatureFlagsApi.md#delete_feature_flag_approval_request) | **DELETE** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagApprovalRequestId} | Delete an approval request for a feature flag
9
10
  [**get_expiring_user_targets**](FeatureFlagsApi.md#get_expiring_user_targets) | **GET** /flags/{projectKey}/{featureFlagKey}/expiring-user-targets/{environmentKey} | Get expiring user targets for feature flag
10
11
  [**get_feature_flag**](FeatureFlagsApi.md#get_feature_flag) | **GET** /flags/{projectKey}/{featureFlagKey} | Get a single feature flag by key.
11
- [**get_feature_flag_change_request**](FeatureFlagsApi.md#get_feature_flag_change_request) | **GET** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId} | Get a single change request for a feature flag
12
- [**get_feature_flag_change_requests**](FeatureFlagsApi.md#get_feature_flag_change_requests) | **GET** /{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests | Get all change requests for a feature flag
12
+ [**get_feature_flag_approval_request**](FeatureFlagsApi.md#get_feature_flag_approval_request) | **GET** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagApprovalRequestId} | Get a single approval request for a feature flag
13
+ [**get_feature_flag_approval_requests**](FeatureFlagsApi.md#get_feature_flag_approval_requests) | **GET** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests | Get all approval requests for a feature flag
13
14
  [**get_feature_flag_status**](FeatureFlagsApi.md#get_feature_flag_status) | **GET** /flag-statuses/{projectKey}/{environmentKey}/{featureFlagKey} | Get the status for a particular feature flag.
14
15
  [**get_feature_flag_status_across_environments**](FeatureFlagsApi.md#get_feature_flag_status_across_environments) | **GET** /flag-status/{projectKey}/{featureFlagKey} | Get the status for a particular feature flag across environments
15
16
  [**get_feature_flag_statuses**](FeatureFlagsApi.md#get_feature_flag_statuses) | **GET** /flag-statuses/{projectKey}/{environmentKey} | Get a list of statuses for all feature flags. The status includes the last time the feature flag was requested, as well as the state of the flag.
16
17
  [**get_feature_flags**](FeatureFlagsApi.md#get_feature_flags) | **GET** /flags/{projectKey} | Get a list of all features in the given project.
17
18
  [**patch_expiring_user_targets**](FeatureFlagsApi.md#patch_expiring_user_targets) | **PATCH** /flags/{projectKey}/{featureFlagKey}/expiring-user-targets/{environmentKey} | Update, add, or delete expiring user targets on feature flag
18
19
  [**patch_feature_flag**](FeatureFlagsApi.md#patch_feature_flag) | **PATCH** /flags/{projectKey}/{featureFlagKey} | Perform a partial update to a feature.
19
- [**post_apply_feature_flag_change_request**](FeatureFlagsApi.md#post_apply_feature_flag_change_request) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId}/apply | Apply change request for a feature flag
20
+ [**post_apply_feature_flag_approval_request**](FeatureFlagsApi.md#post_apply_feature_flag_approval_request) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagApprovalRequestId}/apply | Apply approval request for a feature flag
20
21
  [**post_feature_flag**](FeatureFlagsApi.md#post_feature_flag) | **POST** /flags/{projectKey} | Creates a new feature flag.
21
- [**post_feature_flag_change_request**](FeatureFlagsApi.md#post_feature_flag_change_request) | **POST** /{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests |
22
- [**post_review_feature_flag_change_request**](FeatureFlagsApi.md#post_review_feature_flag_change_request) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId}/review | Review change request for a feature flag
22
+ [**post_feature_flag_approval_request**](FeatureFlagsApi.md#post_feature_flag_approval_request) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagApprovalRequestId} | Create an approval request for a feature flag
23
+ [**post_review_feature_flag_approval_request**](FeatureFlagsApi.md#post_review_feature_flag_approval_request) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagApprovalRequestId}/review | Review approval request for a feature flag
23
24
 
24
25
 
25
26
  # **copy_feature_flag**
@@ -134,6 +135,70 @@ nil (empty response body)
134
135
 
135
136
 
136
137
 
138
+ # **delete_feature_flag_approval_request**
139
+ > delete_feature_flag_approval_request(project_key, environment_key, feature_flag_key, feature_flag_approval_request_id, , opts)
140
+
141
+ Delete an approval request for a feature flag
142
+
143
+ ### Example
144
+ ```ruby
145
+ # load the gem
146
+ require 'launchdarkly_api'
147
+ # setup authorization
148
+ LaunchDarklyApi.configure do |config|
149
+ # Configure API key authorization: Token
150
+ config.api_key['Authorization'] = 'YOUR API KEY'
151
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
152
+ #config.api_key_prefix['Authorization'] = 'Bearer'
153
+ end
154
+
155
+ api_instance = LaunchDarklyApi::FeatureFlagsApi.new
156
+
157
+ project_key = 'project_key_example' # String | The project key, used to tie the flags together under one project so they can be managed together.
158
+
159
+ environment_key = 'environment_key_example' # String | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
160
+
161
+ feature_flag_key = 'feature_flag_key_example' # String | The feature flag's key. The key identifies the flag in your code.
162
+
163
+ feature_flag_approval_request_id = 'feature_flag_approval_request_id_example' # String | The feature flag approval request ID
164
+
165
+ opts = {
166
+ feature_flag_approval_request_config_body: LaunchDarklyApi::FeatureFlagApprovalRequestConfigBody.new # FeatureFlagApprovalRequestConfigBody | Create a new feature flag approval request
167
+ }
168
+
169
+ begin
170
+ #Delete an approval request for a feature flag
171
+ api_instance.delete_feature_flag_approval_request(project_key, environment_key, feature_flag_key, feature_flag_approval_request_id, , opts)
172
+ rescue LaunchDarklyApi::ApiError => e
173
+ puts "Exception when calling FeatureFlagsApi->delete_feature_flag_approval_request: #{e}"
174
+ end
175
+ ```
176
+
177
+ ### Parameters
178
+
179
+ Name | Type | Description | Notes
180
+ ------------- | ------------- | ------------- | -------------
181
+ **project_key** | **String**| The project key, used to tie the flags together under one project so they can be managed together. |
182
+ **environment_key** | **String**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
183
+ **feature_flag_key** | **String**| The feature flag's key. The key identifies the flag in your code. |
184
+ **feature_flag_approval_request_id** | **String**| The feature flag approval request ID |
185
+ **feature_flag_approval_request_config_body** | [**FeatureFlagApprovalRequestConfigBody**](FeatureFlagApprovalRequestConfigBody.md)| Create a new feature flag approval request | [optional]
186
+
187
+ ### Return type
188
+
189
+ nil (empty response body)
190
+
191
+ ### Authorization
192
+
193
+ [Token](../README.md#Token)
194
+
195
+ ### HTTP request headers
196
+
197
+ - **Content-Type**: application/json
198
+ - **Accept**: application/json
199
+
200
+
201
+
137
202
  # **get_expiring_user_targets**
138
203
  > UserTargetingExpirationForFlags get_expiring_user_targets(project_key, environment_key, feature_flag_key, )
139
204
 
@@ -251,10 +316,10 @@ Name | Type | Description | Notes
251
316
 
252
317
 
253
318
 
254
- # **get_feature_flag_change_request**
255
- > FeatureFlagChangeRequests get_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, )
319
+ # **get_feature_flag_approval_request**
320
+ > FeatureFlagApprovalRequests get_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, )
256
321
 
257
- Get a single change request for a feature flag
322
+ Get a single approval request for a feature flag
258
323
 
259
324
  ### Example
260
325
  ```ruby
@@ -276,15 +341,15 @@ feature_flag_key = 'feature_flag_key_example' # String | The feature flag's key.
276
341
 
277
342
  environment_key = 'environment_key_example' # String | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
278
343
 
279
- feature_flag_change_request_id = 'feature_flag_change_request_id_example' # String | The feature flag change request ID
344
+ feature_flag_approval_request_id = 'feature_flag_approval_request_id_example' # String | The feature flag approval request ID
280
345
 
281
346
 
282
347
  begin
283
- #Get a single change request for a feature flag
284
- result = api_instance.get_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, )
348
+ #Get a single approval request for a feature flag
349
+ result = api_instance.get_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, )
285
350
  p result
286
351
  rescue LaunchDarklyApi::ApiError => e
287
- puts "Exception when calling FeatureFlagsApi->get_feature_flag_change_request: #{e}"
352
+ puts "Exception when calling FeatureFlagsApi->get_feature_flag_approval_request: #{e}"
288
353
  end
289
354
  ```
290
355
 
@@ -295,11 +360,11 @@ Name | Type | Description | Notes
295
360
  **project_key** | **String**| The project key, used to tie the flags together under one project so they can be managed together. |
296
361
  **feature_flag_key** | **String**| The feature flag's key. The key identifies the flag in your code. |
297
362
  **environment_key** | **String**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
298
- **feature_flag_change_request_id** | **String**| The feature flag change request ID |
363
+ **feature_flag_approval_request_id** | **String**| The feature flag approval request ID |
299
364
 
300
365
  ### Return type
301
366
 
302
- [**FeatureFlagChangeRequests**](FeatureFlagChangeRequests.md)
367
+ [**FeatureFlagApprovalRequests**](FeatureFlagApprovalRequests.md)
303
368
 
304
369
  ### Authorization
305
370
 
@@ -312,10 +377,10 @@ Name | Type | Description | Notes
312
377
 
313
378
 
314
379
 
315
- # **get_feature_flag_change_requests**
316
- > FeatureFlagChangeRequests get_feature_flag_change_requests(project_key, feature_flag_key, environment_key, )
380
+ # **get_feature_flag_approval_requests**
381
+ > FeatureFlagApprovalRequests get_feature_flag_approval_requests(project_key, feature_flag_key, environment_key, )
317
382
 
318
- Get all change requests for a feature flag
383
+ Get all approval requests for a feature flag
319
384
 
320
385
  ### Example
321
386
  ```ruby
@@ -339,11 +404,11 @@ environment_key = 'environment_key_example' # String | The environment key, used
339
404
 
340
405
 
341
406
  begin
342
- #Get all change requests for a feature flag
343
- result = api_instance.get_feature_flag_change_requests(project_key, feature_flag_key, environment_key, )
407
+ #Get all approval requests for a feature flag
408
+ result = api_instance.get_feature_flag_approval_requests(project_key, feature_flag_key, environment_key, )
344
409
  p result
345
410
  rescue LaunchDarklyApi::ApiError => e
346
- puts "Exception when calling FeatureFlagsApi->get_feature_flag_change_requests: #{e}"
411
+ puts "Exception when calling FeatureFlagsApi->get_feature_flag_approval_requests: #{e}"
347
412
  end
348
413
  ```
349
414
 
@@ -357,7 +422,7 @@ Name | Type | Description | Notes
357
422
 
358
423
  ### Return type
359
424
 
360
- [**FeatureFlagChangeRequests**](FeatureFlagChangeRequests.md)
425
+ [**FeatureFlagApprovalRequests**](FeatureFlagApprovalRequests.md)
361
426
 
362
427
  ### Authorization
363
428
 
@@ -727,10 +792,10 @@ Name | Type | Description | Notes
727
792
 
728
793
 
729
794
 
730
- # **post_apply_feature_flag_change_request**
731
- > FeatureFlagChangeRequests post_apply_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, feature_flag_change_request_apply_config_body)
795
+ # **post_apply_feature_flag_approval_request**
796
+ > FeatureFlagApprovalRequests post_apply_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, feature_flag_approval_request_apply_config_body)
732
797
 
733
- Apply change request for a feature flag
798
+ Apply approval request for a feature flag
734
799
 
735
800
  ### Example
736
801
  ```ruby
@@ -752,17 +817,17 @@ feature_flag_key = 'feature_flag_key_example' # String | The feature flag's key.
752
817
 
753
818
  environment_key = 'environment_key_example' # String | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
754
819
 
755
- feature_flag_change_request_id = 'feature_flag_change_request_id_example' # String | The feature flag change request ID
820
+ feature_flag_approval_request_id = 'feature_flag_approval_request_id_example' # String | The feature flag approval request ID
756
821
 
757
- feature_flag_change_request_apply_config_body = LaunchDarklyApi::FeatureFlagChangeRequestApplyConfigBody.new # FeatureFlagChangeRequestApplyConfigBody | Apply a new feature flag change request
822
+ feature_flag_approval_request_apply_config_body = LaunchDarklyApi::FeatureFlagApprovalRequestApplyConfigBody.new # FeatureFlagApprovalRequestApplyConfigBody | Apply a new feature flag approval request
758
823
 
759
824
 
760
825
  begin
761
- #Apply change request for a feature flag
762
- result = api_instance.post_apply_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, feature_flag_change_request_apply_config_body)
826
+ #Apply approval request for a feature flag
827
+ result = api_instance.post_apply_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, feature_flag_approval_request_apply_config_body)
763
828
  p result
764
829
  rescue LaunchDarklyApi::ApiError => e
765
- puts "Exception when calling FeatureFlagsApi->post_apply_feature_flag_change_request: #{e}"
830
+ puts "Exception when calling FeatureFlagsApi->post_apply_feature_flag_approval_request: #{e}"
766
831
  end
767
832
  ```
768
833
 
@@ -773,12 +838,12 @@ Name | Type | Description | Notes
773
838
  **project_key** | **String**| The project key, used to tie the flags together under one project so they can be managed together. |
774
839
  **feature_flag_key** | **String**| The feature flag's key. The key identifies the flag in your code. |
775
840
  **environment_key** | **String**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
776
- **feature_flag_change_request_id** | **String**| The feature flag change request ID |
777
- **feature_flag_change_request_apply_config_body** | [**FeatureFlagChangeRequestApplyConfigBody**](FeatureFlagChangeRequestApplyConfigBody.md)| Apply a new feature flag change request |
841
+ **feature_flag_approval_request_id** | **String**| The feature flag approval request ID |
842
+ **feature_flag_approval_request_apply_config_body** | [**FeatureFlagApprovalRequestApplyConfigBody**](FeatureFlagApprovalRequestApplyConfigBody.md)| Apply a new feature flag approval request |
778
843
 
779
844
  ### Return type
780
845
 
781
- [**FeatureFlagChangeRequests**](FeatureFlagChangeRequests.md)
846
+ [**FeatureFlagApprovalRequests**](FeatureFlagApprovalRequests.md)
782
847
 
783
848
  ### Authorization
784
849
 
@@ -850,10 +915,10 @@ Name | Type | Description | Notes
850
915
 
851
916
 
852
917
 
853
- # **post_feature_flag_change_request**
854
- > FeatureFlagChangeRequest post_feature_flag_change_request(project_key, feature_flag_key, environment_key, , opts)
855
-
918
+ # **post_feature_flag_approval_request**
919
+ > FeatureFlagApprovalRequest post_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, , opts)
856
920
 
921
+ Create an approval request for a feature flag
857
922
 
858
923
  ### Example
859
924
  ```ruby
@@ -875,15 +940,18 @@ feature_flag_key = 'feature_flag_key_example' # String | The feature flag's key.
875
940
 
876
941
  environment_key = 'environment_key_example' # String | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
877
942
 
943
+ feature_flag_approval_request_id = 'feature_flag_approval_request_id_example' # String | The feature flag approval request ID
944
+
878
945
  opts = {
879
- feature_flag_change_request_config_body: LaunchDarklyApi::FeatureFlagChangeRequestConfigBody.new # FeatureFlagChangeRequestConfigBody | Create a new feature flag change request
946
+ feature_flag_approval_request_config_body: LaunchDarklyApi::FeatureFlagApprovalRequestConfigBody.new # FeatureFlagApprovalRequestConfigBody | Create a new feature flag approval request
880
947
  }
881
948
 
882
949
  begin
883
- result = api_instance.post_feature_flag_change_request(project_key, feature_flag_key, environment_key, , opts)
950
+ #Create an approval request for a feature flag
951
+ result = api_instance.post_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, , opts)
884
952
  p result
885
953
  rescue LaunchDarklyApi::ApiError => e
886
- puts "Exception when calling FeatureFlagsApi->post_feature_flag_change_request: #{e}"
954
+ puts "Exception when calling FeatureFlagsApi->post_feature_flag_approval_request: #{e}"
887
955
  end
888
956
  ```
889
957
 
@@ -894,11 +962,12 @@ Name | Type | Description | Notes
894
962
  **project_key** | **String**| The project key, used to tie the flags together under one project so they can be managed together. |
895
963
  **feature_flag_key** | **String**| The feature flag's key. The key identifies the flag in your code. |
896
964
  **environment_key** | **String**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
897
- **feature_flag_change_request_config_body** | [**FeatureFlagChangeRequestConfigBody**](FeatureFlagChangeRequestConfigBody.md)| Create a new feature flag change request | [optional]
965
+ **feature_flag_approval_request_id** | **String**| The feature flag approval request ID |
966
+ **feature_flag_approval_request_config_body** | [**FeatureFlagApprovalRequestConfigBody**](FeatureFlagApprovalRequestConfigBody.md)| Create a new feature flag approval request | [optional]
898
967
 
899
968
  ### Return type
900
969
 
901
- [**FeatureFlagChangeRequest**](FeatureFlagChangeRequest.md)
970
+ [**FeatureFlagApprovalRequest**](FeatureFlagApprovalRequest.md)
902
971
 
903
972
  ### Authorization
904
973
 
@@ -911,10 +980,10 @@ Name | Type | Description | Notes
911
980
 
912
981
 
913
982
 
914
- # **post_review_feature_flag_change_request**
915
- > FeatureFlagChangeRequests post_review_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, feature_flag_change_request_review_config_body)
983
+ # **post_review_feature_flag_approval_request**
984
+ > FeatureFlagApprovalRequests post_review_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, feature_flag_approval_request_review_config_body)
916
985
 
917
- Review change request for a feature flag
986
+ Review approval request for a feature flag
918
987
 
919
988
  ### Example
920
989
  ```ruby
@@ -936,17 +1005,17 @@ feature_flag_key = 'feature_flag_key_example' # String | The feature flag's key.
936
1005
 
937
1006
  environment_key = 'environment_key_example' # String | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
938
1007
 
939
- feature_flag_change_request_id = 'feature_flag_change_request_id_example' # String | The feature flag change request ID
1008
+ feature_flag_approval_request_id = 'feature_flag_approval_request_id_example' # String | The feature flag approval request ID
940
1009
 
941
- feature_flag_change_request_review_config_body = LaunchDarklyApi::FeatureFlagChangeRequestReviewConfigBody.new # FeatureFlagChangeRequestReviewConfigBody | Review a feature flag change request
1010
+ feature_flag_approval_request_review_config_body = LaunchDarklyApi::FeatureFlagApprovalRequestReviewConfigBody.new # FeatureFlagApprovalRequestReviewConfigBody | Review a feature flag approval request
942
1011
 
943
1012
 
944
1013
  begin
945
- #Review change request for a feature flag
946
- result = api_instance.post_review_feature_flag_change_request(project_key, feature_flag_key, environment_key, feature_flag_change_request_id, feature_flag_change_request_review_config_body)
1014
+ #Review approval request for a feature flag
1015
+ result = api_instance.post_review_feature_flag_approval_request(project_key, feature_flag_key, environment_key, feature_flag_approval_request_id, feature_flag_approval_request_review_config_body)
947
1016
  p result
948
1017
  rescue LaunchDarklyApi::ApiError => e
949
- puts "Exception when calling FeatureFlagsApi->post_review_feature_flag_change_request: #{e}"
1018
+ puts "Exception when calling FeatureFlagsApi->post_review_feature_flag_approval_request: #{e}"
950
1019
  end
951
1020
  ```
952
1021
 
@@ -957,12 +1026,12 @@ Name | Type | Description | Notes
957
1026
  **project_key** | **String**| The project key, used to tie the flags together under one project so they can be managed together. |
958
1027
  **feature_flag_key** | **String**| The feature flag's key. The key identifies the flag in your code. |
959
1028
  **environment_key** | **String**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
960
- **feature_flag_change_request_id** | **String**| The feature flag change request ID |
961
- **feature_flag_change_request_review_config_body** | [**FeatureFlagChangeRequestReviewConfigBody**](FeatureFlagChangeRequestReviewConfigBody.md)| Review a feature flag change request |
1029
+ **feature_flag_approval_request_id** | **String**| The feature flag approval request ID |
1030
+ **feature_flag_approval_request_review_config_body** | [**FeatureFlagApprovalRequestReviewConfigBody**](FeatureFlagApprovalRequestReviewConfigBody.md)| Review a feature flag approval request |
962
1031
 
963
1032
  ### Return type
964
1033
 
965
- [**FeatureFlagChangeRequests**](FeatureFlagChangeRequests.md)
1034
+ [**FeatureFlagApprovalRequests**](FeatureFlagApprovalRequests.md)
966
1035
 
967
1036
  ### Authorization
968
1037
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  #Build custom integrations with the LaunchDarkly REST API
7
7
 
8
- OpenAPI spec version: 3.10.0
8
+ OpenAPI spec version: 4.0.0
9
9
  Contact: support@launchdarkly.com
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
11
  Swagger Codegen version: 2.4.8
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Build custom integrations with the LaunchDarkly REST API
5
5
 
6
- OpenAPI spec version: 3.10.0
6
+ OpenAPI spec version: 4.0.0
7
7
  Contact: support@launchdarkly.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.4.8
@@ -37,19 +37,20 @@ require 'launchdarkly_api/models/destination_m_particle'
37
37
  require 'launchdarkly_api/models/destination_segment'
38
38
  require 'launchdarkly_api/models/destinations'
39
39
  require 'launchdarkly_api/models/environment'
40
+ require 'launchdarkly_api/models/environment_approval_settings'
40
41
  require 'launchdarkly_api/models/environment_post'
41
42
  require 'launchdarkly_api/models/evaluation_usage_error'
42
43
  require 'launchdarkly_api/models/events'
43
44
  require 'launchdarkly_api/models/fallthrough'
44
45
  require 'launchdarkly_api/models/feature_flag'
46
+ require 'launchdarkly_api/models/feature_flag_approval_request'
47
+ require 'launchdarkly_api/models/feature_flag_approval_request_apply_config_body'
48
+ require 'launchdarkly_api/models/feature_flag_approval_request_config_body'
49
+ require 'launchdarkly_api/models/feature_flag_approval_request_review'
50
+ require 'launchdarkly_api/models/feature_flag_approval_request_review_config_body'
51
+ require 'launchdarkly_api/models/feature_flag_approval_request_review_status'
52
+ require 'launchdarkly_api/models/feature_flag_approval_requests'
45
53
  require 'launchdarkly_api/models/feature_flag_body'
46
- require 'launchdarkly_api/models/feature_flag_change_request'
47
- require 'launchdarkly_api/models/feature_flag_change_request_apply_config_body'
48
- require 'launchdarkly_api/models/feature_flag_change_request_config_body'
49
- require 'launchdarkly_api/models/feature_flag_change_request_review'
50
- require 'launchdarkly_api/models/feature_flag_change_request_review_config_body'
51
- require 'launchdarkly_api/models/feature_flag_change_request_review_status'
52
- require 'launchdarkly_api/models/feature_flag_change_requests'
53
54
  require 'launchdarkly_api/models/feature_flag_config'
54
55
  require 'launchdarkly_api/models/feature_flag_copy_body'
55
56
  require 'launchdarkly_api/models/feature_flag_copy_object'