Skip to content

Commit 284eca2

Browse files
author
LaunchDarklyReleaseBot
committed
Version 8.0.0 automatically generated from ld-openapi.
1 parent 77db42a commit 284eca2

File tree

620 files changed

+12388
-2183
lines changed

Some content is hidden

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

620 files changed

+12388
-2183
lines changed

.openapi-generator/FILES

Lines changed: 120 additions & 33 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 121 additions & 70 deletions
Large diffs are not rendered by default.

docs/Access.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# LaunchDarklyApi.Access
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**denied** | [**[AccessDenied]**](AccessDenied.md) | |
8+
**allowed** | [**[AccessAllowedRep]**](AccessAllowedRep.md) | |
9+
10+

docs/AccessAllowedReason.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# LaunchDarklyApi.AccessAllowedReason
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**resources** | **[String]** | Resource specifier strings | [optional]
8+
**notResources** | **[String]** | Targeted resources are the resources NOT in this list. The \"resources\" and \"notActions\" fields must be empty to use this field. | [optional]
9+
**actions** | **[String]** | Actions to perform on a resource | [optional]
10+
**notActions** | **[String]** | Targeted actions are the actions NOT in this list. The \"actions\" and \"notResources\" fields must be empty to use this field. | [optional]
11+
**effect** | **String** | |
12+
**roleName** | **String** | | [optional]
13+
14+

docs/AccessAllowedRep.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# LaunchDarklyApi.AccessAllowedRep
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**action** | **String** | |
8+
**reason** | [**AccessAllowedReason**](AccessAllowedReason.md) | |
9+
10+

docs/AccessDenied.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# LaunchDarklyApi.AccessDenied
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**action** | **String** | |
8+
**reason** | [**AccessDeniedReason**](AccessDeniedReason.md) | |
9+
10+

docs/AccessDeniedReason.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# LaunchDarklyApi.AccessDeniedReason
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**resources** | **[String]** | Resource specifier strings | [optional]
8+
**notResources** | **[String]** | Targeted resources are the resources NOT in this list. The \"resources\" and \"notActions\" fields must be empty to use this field. | [optional]
9+
**actions** | **[String]** | Actions to perform on a resource | [optional]
10+
**notActions** | **[String]** | Targeted actions are the actions NOT in this list. The \"actions\" and \"notResources\" fields must be empty to use this field. | [optional]
11+
**effect** | **String** | |
12+
**roleName** | **String** | | [optional]
13+
14+

docs/AccountUsageBetaApi.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to *https://app.launchdarkly.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**getEvaluationsUsage**](AccountUsageBetaApi.md#getEvaluationsUsage) | **GET** /api/v2/usage/evaluations/{projKey}/{envKey}/{flagKey} | Get evaluations usage
7+
[**getEvaluationsUsage**](AccountUsageBetaApi.md#getEvaluationsUsage) | **GET** /api/v2/usage/evaluations/{projectKey}/{environmentKey}/{featureFlagKey} | Get evaluations usage
88
[**getEventsUsage**](AccountUsageBetaApi.md#getEventsUsage) | **GET** /api/v2/usage/events/{type} | Get events usage
99
[**getMauSdksByType**](AccountUsageBetaApi.md#getMauSdksByType) | **GET** /api/v2/usage/mau/sdks | Get MAU SDKs by type
1010
[**getMauUsage**](AccountUsageBetaApi.md#getMauUsage) | **GET** /api/v2/usage/mau | Get MAU usage
@@ -17,7 +17,7 @@ Method | HTTP request | Description
1717

1818
## getEvaluationsUsage
1919

20-
> SeriesListRep getEvaluationsUsage(projKey, envKey, flagKey, opts)
20+
> SeriesListRep getEvaluationsUsage(projectKey, environmentKey, featureFlagKey, opts)
2121
2222
Get evaluations usage
2323

@@ -35,15 +35,15 @@ ApiKey.apiKey = 'YOUR API KEY';
3535
//ApiKey.apiKeyPrefix = 'Token';
3636

3737
let apiInstance = new LaunchDarklyApi.AccountUsageBetaApi();
38-
let projKey = "projKey_example"; // String | The project key.
39-
let envKey = "envKey_example"; // String | The environment key.
40-
let flagKey = "flagKey_example"; // String | The feature flag's key.
38+
let projectKey = "projectKey_example"; // String | The project key
39+
let environmentKey = "environmentKey_example"; // String | The environment key
40+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
4141
let opts = {
4242
'from': "from_example", // String | The series of data returned starts from this timestamp. Defaults to 30 days ago.
4343
'to': "to_example", // String | The series of data returned ends at this timestamp. Defaults to the current time.
4444
'tz': "tz_example" // String | The timezone to use for breaks between days when returning daily data.
4545
};
46-
apiInstance.getEvaluationsUsage(projKey, envKey, flagKey, opts, (error, data, response) => {
46+
apiInstance.getEvaluationsUsage(projectKey, environmentKey, featureFlagKey, opts, (error, data, response) => {
4747
if (error) {
4848
console.error(error);
4949
} else {
@@ -57,9 +57,9 @@ apiInstance.getEvaluationsUsage(projKey, envKey, flagKey, opts, (error, data, re
5757

5858
Name | Type | Description | Notes
5959
------------- | ------------- | ------------- | -------------
60-
**projKey** | **String**| The project key. |
61-
**envKey** | **String**| The environment key. |
62-
**flagKey** | **String**| The feature flag's key. |
60+
**projectKey** | **String**| The project key |
61+
**environmentKey** | **String**| The environment key |
62+
**featureFlagKey** | **String**| The feature flag key |
6363
**from** | **String**| The series of data returned starts from this timestamp. Defaults to 30 days ago. | [optional]
6464
**to** | **String**| The series of data returned ends at this timestamp. Defaults to the current time. | [optional]
6565
**tz** | **String**| The timezone to use for breaks between days when returning daily data. | [optional]

docs/ApprovalsApi.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ApiKey.apiKey = 'YOUR API KEY';
3535

3636
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
3737
let projectKey = "projectKey_example"; // String | The project key
38-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
38+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
3939
let environmentKey = "environmentKey_example"; // String | The environment key
4040
let id = "id_example"; // String | The feature flag approval request ID
4141
apiInstance.deleteApprovalRequest(projectKey, featureFlagKey, environmentKey, id, (error, data, response) => {
@@ -53,7 +53,7 @@ apiInstance.deleteApprovalRequest(projectKey, featureFlagKey, environmentKey, id
5353
Name | Type | Description | Notes
5454
------------- | ------------- | ------------- | -------------
5555
**projectKey** | **String**| The project key |
56-
**featureFlagKey** | **String**| The feature flag's key |
56+
**featureFlagKey** | **String**| The feature flag key |
5757
**environmentKey** | **String**| The environment key |
5858
**id** | **String**| The feature flag approval request ID |
5959

@@ -92,7 +92,7 @@ ApiKey.apiKey = 'YOUR API KEY';
9292

9393
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
9494
let projectKey = "projectKey_example"; // String | The project key
95-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
95+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
9696
let environmentKey = "environmentKey_example"; // String | The environment key
9797
let id = "id_example"; // String | The feature flag approval request ID
9898
apiInstance.getApproval(projectKey, featureFlagKey, environmentKey, id, (error, data, response) => {
@@ -110,7 +110,7 @@ apiInstance.getApproval(projectKey, featureFlagKey, environmentKey, id, (error,
110110
Name | Type | Description | Notes
111111
------------- | ------------- | ------------- | -------------
112112
**projectKey** | **String**| The project key |
113-
**featureFlagKey** | **String**| The feature flag's key |
113+
**featureFlagKey** | **String**| The feature flag key |
114114
**environmentKey** | **String**| The environment key |
115115
**id** | **String**| The feature flag approval request ID |
116116

@@ -149,7 +149,7 @@ ApiKey.apiKey = 'YOUR API KEY';
149149

150150
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
151151
let projectKey = "projectKey_example"; // String | The project key
152-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
152+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
153153
let environmentKey = "environmentKey_example"; // String | The environment key
154154
apiInstance.getApprovals(projectKey, featureFlagKey, environmentKey, (error, data, response) => {
155155
if (error) {
@@ -166,7 +166,7 @@ apiInstance.getApprovals(projectKey, featureFlagKey, environmentKey, (error, dat
166166
Name | Type | Description | Notes
167167
------------- | ------------- | ------------- | -------------
168168
**projectKey** | **String**| The project key |
169-
**featureFlagKey** | **String**| The feature flag's key |
169+
**featureFlagKey** | **String**| The feature flag key |
170170
**environmentKey** | **String**| The environment key |
171171

172172
### Return type
@@ -204,7 +204,7 @@ ApiKey.apiKey = 'YOUR API KEY';
204204

205205
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
206206
let projectKey = "projectKey_example"; // String | The project key
207-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
207+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
208208
let environmentKey = "environmentKey_example"; // String | The environment key
209209
let createFlagConfigApprovalRequestRequest = new LaunchDarklyApi.CreateFlagConfigApprovalRequestRequest(); // CreateFlagConfigApprovalRequestRequest |
210210
apiInstance.postApprovalRequest(projectKey, featureFlagKey, environmentKey, createFlagConfigApprovalRequestRequest, (error, data, response) => {
@@ -222,7 +222,7 @@ apiInstance.postApprovalRequest(projectKey, featureFlagKey, environmentKey, crea
222222
Name | Type | Description | Notes
223223
------------- | ------------- | ------------- | -------------
224224
**projectKey** | **String**| The project key |
225-
**featureFlagKey** | **String**| The feature flag's key |
225+
**featureFlagKey** | **String**| The feature flag key |
226226
**environmentKey** | **String**| The environment key |
227227
**createFlagConfigApprovalRequestRequest** | [**CreateFlagConfigApprovalRequestRequest**](CreateFlagConfigApprovalRequestRequest.md)| |
228228

@@ -261,7 +261,7 @@ ApiKey.apiKey = 'YOUR API KEY';
261261

262262
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
263263
let projectKey = "projectKey_example"; // String | The project key
264-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
264+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
265265
let environmentKey = "environmentKey_example"; // String | The environment key
266266
let id = "id_example"; // String | The feature flag approval request ID
267267
let postApprovalRequestApplyRequest = new LaunchDarklyApi.PostApprovalRequestApplyRequest(); // PostApprovalRequestApplyRequest |
@@ -280,7 +280,7 @@ apiInstance.postApprovalRequestApplyRequest(projectKey, featureFlagKey, environm
280280
Name | Type | Description | Notes
281281
------------- | ------------- | ------------- | -------------
282282
**projectKey** | **String**| The project key |
283-
**featureFlagKey** | **String**| The feature flag's key |
283+
**featureFlagKey** | **String**| The feature flag key |
284284
**environmentKey** | **String**| The environment key |
285285
**id** | **String**| The feature flag approval request ID |
286286
**postApprovalRequestApplyRequest** | [**PostApprovalRequestApplyRequest**](PostApprovalRequestApplyRequest.md)| |
@@ -320,7 +320,7 @@ ApiKey.apiKey = 'YOUR API KEY';
320320

321321
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
322322
let projectKey = "projectKey_example"; // String | The project key
323-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
323+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
324324
let environmentKey = "environmentKey_example"; // String | The environment key
325325
let id = "id_example"; // String | The feature flag approval request ID
326326
let postApprovalRequestReviewRequest = new LaunchDarklyApi.PostApprovalRequestReviewRequest(); // PostApprovalRequestReviewRequest |
@@ -339,7 +339,7 @@ apiInstance.postApprovalRequestReview(projectKey, featureFlagKey, environmentKey
339339
Name | Type | Description | Notes
340340
------------- | ------------- | ------------- | -------------
341341
**projectKey** | **String**| The project key |
342-
**featureFlagKey** | **String**| The feature flag's key |
342+
**featureFlagKey** | **String**| The feature flag key |
343343
**environmentKey** | **String**| The environment key |
344344
**id** | **String**| The feature flag approval request ID |
345345
**postApprovalRequestReviewRequest** | [**PostApprovalRequestReviewRequest**](PostApprovalRequestReviewRequest.md)| |
@@ -379,7 +379,7 @@ ApiKey.apiKey = 'YOUR API KEY';
379379

380380
let apiInstance = new LaunchDarklyApi.ApprovalsApi();
381381
let projectKey = "projectKey_example"; // String | The project key
382-
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag's key
382+
let featureFlagKey = "featureFlagKey_example"; // String | The feature flag key
383383
let environmentKey = "environmentKey_example"; // String | The environment key
384384
let createCopyFlagConfigApprovalRequestRequest = new LaunchDarklyApi.CreateCopyFlagConfigApprovalRequestRequest(); // CreateCopyFlagConfigApprovalRequestRequest |
385385
apiInstance.postFlagCopyConfigApprovalRequest(projectKey, featureFlagKey, environmentKey, createCopyFlagConfigApprovalRequestRequest, (error, data, response) => {
@@ -397,7 +397,7 @@ apiInstance.postFlagCopyConfigApprovalRequest(projectKey, featureFlagKey, enviro
397397
Name | Type | Description | Notes
398398
------------- | ------------- | ------------- | -------------
399399
**projectKey** | **String**| The project key |
400-
**featureFlagKey** | **String**| The feature flag's key |
400+
**featureFlagKey** | **String**| The feature flag key |
401401
**environmentKey** | **String**| The environment key |
402402
**createCopyFlagConfigApprovalRequestRequest** | [**CreateCopyFlagConfigApprovalRequestRequest**](CreateCopyFlagConfigApprovalRequestRequest.md)| |
403403

docs/CodeReferencesApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Method | HTTP request | Description
1212
[**getRepositories**](CodeReferencesApi.md#getRepositories) | **GET** /api/v2/code-refs/repositories | List repositories
1313
[**getRepository**](CodeReferencesApi.md#getRepository) | **GET** /api/v2/code-refs/repositories/{repo} | Get repository
1414
[**getRootStatistic**](CodeReferencesApi.md#getRootStatistic) | **GET** /api/v2/code-refs/statistics | Get links to code reference repositories for each project
15-
[**getStatistics**](CodeReferencesApi.md#getStatistics) | **GET** /api/v2/code-refs/statistics/{projKey} | Get number of code references for flags
15+
[**getStatistics**](CodeReferencesApi.md#getStatistics) | **GET** /api/v2/code-refs/statistics/{projectKey} | Get number of code references for flags
1616
[**patchRepository**](CodeReferencesApi.md#patchRepository) | **PATCH** /api/v2/code-refs/repositories/{repo} | Update repository
1717
[**postExtinction**](CodeReferencesApi.md#postExtinction) | **POST** /api/v2/code-refs/repositories/{repo}/branches/{branch}/extinction-events | Create extinction
1818
[**postRepository**](CodeReferencesApi.md#postRepository) | **POST** /api/v2/code-refs/repositories | Create repository
@@ -456,7 +456,7 @@ This endpoint does not need any parameter.
456456

457457
## getStatistics
458458

459-
> StatisticCollectionRep getStatistics(projKey, opts)
459+
> StatisticCollectionRep getStatistics(projectKey, opts)
460460
461461
Get number of code references for flags
462462

@@ -474,11 +474,11 @@ ApiKey.apiKey = 'YOUR API KEY';
474474
//ApiKey.apiKeyPrefix = 'Token';
475475

476476
let apiInstance = new LaunchDarklyApi.CodeReferencesApi();
477-
let projKey = "projKey_example"; // String | The project key
477+
let projectKey = "projectKey_example"; // String | The project key
478478
let opts = {
479479
'flagKey': "flagKey_example" // String | Filter results to a specific flag key
480480
};
481-
apiInstance.getStatistics(projKey, opts, (error, data, response) => {
481+
apiInstance.getStatistics(projectKey, opts, (error, data, response) => {
482482
if (error) {
483483
console.error(error);
484484
} else {
@@ -492,7 +492,7 @@ apiInstance.getStatistics(projKey, opts, (error, data, response) => {
492492

493493
Name | Type | Description | Notes
494494
------------- | ------------- | ------------- | -------------
495-
**projKey** | **String**| The project key |
495+
**projectKey** | **String**| The project key |
496496
**flagKey** | **String**| Filter results to a specific flag key | [optional]
497497

498498
### Return type

docs/ConditionInputRep.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**scheduleKind** | **String** | | [optional]
78
**executionDate** | **Number** | | [optional]
9+
**waitDuration** | **Number** | | [optional]
10+
**waitDurationUnit** | **String** | | [optional]
811
**executeNow** | **Boolean** | | [optional]
912
**description** | **String** | | [optional]
1013
**notifyMemberIds** | **[String]** | | [optional]

docs/ConditionOutputRep.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ Name | Type | Description | Notes
77
**id** | **String** | |
88
**kind** | **String** | | [optional]
99
**execution** | [**ExecutionOutputRep**](ExecutionOutputRep.md) | |
10+
**scheduleKind** | **String** | | [optional]
1011
**executionDate** | **Number** | | [optional]
12+
**waitDuration** | **Number** | | [optional]
13+
**waitDurationUnit** | **String** | | [optional]
1114
**description** | **String** | |
1215
**notifyMemberIds** | **[String]** | |
1316
**allReviews** | [**[ReviewOutputRep]**](ReviewOutputRep.md) | |

docs/CustomRole.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **String** | |
88
**links** | [**{String: Link}**](Link.md) | |
9-
**access** | [**AccessRep**](AccessRep.md) | | [optional]
9+
**access** | [**Access**](Access.md) | | [optional]
1010
**description** | **String** | | [optional]
1111
**key** | **String** | |
1212
**name** | **String** | |

0 commit comments

Comments
 (0)