Skip to content

Commit 352d077

Browse files
author
LaunchDarklyCI
committed
Version 4.0.0 automatically generated from ld-openapi@51a8b42.
1 parent a70e907 commit 352d077

File tree

299 files changed

+3194
-749
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

299 files changed

+3194
-749
lines changed

README.md

Lines changed: 225 additions & 223 deletions
Large diffs are not rendered by default.

docs/Environment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ Name | Type | Description | Notes
1616
**tags** | **Array<String>** | An array of tags for this environment. | [optional]
1717
**require_comments** | **BOOLEAN** | Determines if this environment requires comments for flag and segment changes. | [optional]
1818
**confirm_changes** | **BOOLEAN** | Determines if this environment requires confirmation for flag and segment changes. | [optional]
19+
**approval_settings** | [**EnvironmentApprovalSettings**](EnvironmentApprovalSettings.md) | | [optional]
1920

2021

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+

docs/FeatureFlagApprovalRequest.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequestApplyConfigBody
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**comment** | **String** | comment will be included in audit log item for change. | [optional]
7+
8+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequestConfigBody
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**description** | **String** | A name that describes the changes you would like to apply to a feature flag configuration |
7+
**instructions** | [**SemanticPatchInstruction**](SemanticPatchInstruction.md) | |
8+
**notify_member_ids** | **Array<String>** | |
9+
**comment** | **String** | comment will be included in audit log item for change. | [optional]
10+
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequestReview
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
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+
**member_id** | [**Id**](Id.md) | | [optional]
9+
**_id** | [**Id**](Id.md) | | [optional]
10+
11+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequestReviewConfigBody
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**kind** | **String** | One of approve, decline, or comment. |
7+
**comment** | **String** | comment will be included in audit log item for change. | [optional]
8+
9+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequestReviewStatus
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# LaunchDarklyApi::FeatureFlagApprovalRequests
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**_links** | [**Links**](Links.md) | | [optional]
7+
**items** | [**Array<FeatureFlagApprovalRequest>**](FeatureFlagApprovalRequest.md) | | [optional]
8+
9+

0 commit comments

Comments
 (0)