Skip to content

Commit 356f88d

Browse files
author
LaunchDarklyReleaseBot
committed
Version 19.0.0 automatically generated from ld-openapi.
1 parent 8c4612f commit 356f88d

File tree

636 files changed

+2870
-857
lines changed

Some content is hidden

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

636 files changed

+2870
-857
lines changed

.openapi-generator/FILES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ docs/FollowFlagsApi.md
301301
docs/FollowersPerFlag.md
302302
docs/ForbiddenErrorRep.md
303303
docs/FormVariable.md
304+
docs/GenerateTrustPolicyPostRep.md
304305
docs/GenerateWarehouseDestinationKeyPairPostRep.md
305306
docs/GetAnnouncementsPublic200Response.md
306307
docs/GuardedReleaseConfig.md
@@ -576,6 +577,8 @@ docs/TreatmentRep.md
576577
docs/TriggerPost.md
577578
docs/TriggerWorkflowCollectionRep.md
578579
docs/TriggerWorkflowRep.md
580+
docs/TrustPolicyDetails.md
581+
docs/TrustPolicyStatement.md
579582
docs/UnauthorizedErrorRep.md
580583
docs/UnlinkResourceSuccessResponse.md
581584
docs/UpdatePhaseStatusInput.md
@@ -996,6 +999,7 @@ src/main/java/com/launchdarkly/api/model/FollowFlagMember.java
996999
src/main/java/com/launchdarkly/api/model/FollowersPerFlag.java
9971000
src/main/java/com/launchdarkly/api/model/ForbiddenErrorRep.java
9981001
src/main/java/com/launchdarkly/api/model/FormVariable.java
1002+
src/main/java/com/launchdarkly/api/model/GenerateTrustPolicyPostRep.java
9991003
src/main/java/com/launchdarkly/api/model/GenerateWarehouseDestinationKeyPairPostRep.java
10001004
src/main/java/com/launchdarkly/api/model/GetAnnouncementsPublic200Response.java
10011005
src/main/java/com/launchdarkly/api/model/GuardedReleaseConfig.java
@@ -1245,6 +1249,8 @@ src/main/java/com/launchdarkly/api/model/TreatmentRep.java
12451249
src/main/java/com/launchdarkly/api/model/TriggerPost.java
12461250
src/main/java/com/launchdarkly/api/model/TriggerWorkflowCollectionRep.java
12471251
src/main/java/com/launchdarkly/api/model/TriggerWorkflowRep.java
1252+
src/main/java/com/launchdarkly/api/model/TrustPolicyDetails.java
1253+
src/main/java/com/launchdarkly/api/model/TrustPolicyStatement.java
12481254
src/main/java/com/launchdarkly/api/model/UnauthorizedErrorRep.java
12491255
src/main/java/com/launchdarkly/api/model/UnlinkResourceSuccessResponse.java
12501256
src/main/java/com/launchdarkly/api/model/UpdatePhaseStatusInput.java
@@ -1631,6 +1637,7 @@ src/test/java/com/launchdarkly/api/model/FollowFlagMemberTest.java
16311637
src/test/java/com/launchdarkly/api/model/FollowersPerFlagTest.java
16321638
src/test/java/com/launchdarkly/api/model/ForbiddenErrorRepTest.java
16331639
src/test/java/com/launchdarkly/api/model/FormVariableTest.java
1640+
src/test/java/com/launchdarkly/api/model/GenerateTrustPolicyPostRepTest.java
16341641
src/test/java/com/launchdarkly/api/model/GenerateWarehouseDestinationKeyPairPostRepTest.java
16351642
src/test/java/com/launchdarkly/api/model/GetAnnouncementsPublic200ResponseTest.java
16361643
src/test/java/com/launchdarkly/api/model/GuardedReleaseConfigTest.java
@@ -1880,6 +1887,8 @@ src/test/java/com/launchdarkly/api/model/TreatmentRepTest.java
18801887
src/test/java/com/launchdarkly/api/model/TriggerPostTest.java
18811888
src/test/java/com/launchdarkly/api/model/TriggerWorkflowCollectionRepTest.java
18821889
src/test/java/com/launchdarkly/api/model/TriggerWorkflowRepTest.java
1890+
src/test/java/com/launchdarkly/api/model/TrustPolicyDetailsTest.java
1891+
src/test/java/com/launchdarkly/api/model/TrustPolicyStatementTest.java
18831892
src/test/java/com/launchdarkly/api/model/UnauthorizedErrorRepTest.java
18841893
src/test/java/com/launchdarkly/api/model/UnlinkResourceSuccessResponseTest.java
18851894
src/test/java/com/launchdarkly/api/model/UpdatePhaseStatusInputTest.java

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This client library is only compatible with the latest version of our REST API.
88

99
LaunchDarkly REST API
1010
- API version: 2.0
11-
- Build date: 2025-10-29T16:16:49.423595Z[Etc/UTC]
11+
- Build date: 2025-12-03T22:03:47.239367Z[Etc/UTC]
1212
- Generator version: 7.16.0
1313

1414
This documentation describes LaunchDarkly's REST API. To access the complete OpenAPI spec directly, use [Get OpenAPI spec](https://launchdarkly.com/docs/api/other/get-openapi-spec).
@@ -483,7 +483,7 @@ Add this dependency to your project's POM:
483483
<dependency>
484484
<groupId>com.launchdarkly</groupId>
485485
<artifactId>api-client</artifactId>
486-
<version>18.1.0</version>
486+
<version>19.0.0</version>
487487
<scope>compile</scope>
488488
</dependency>
489489
```
@@ -499,7 +499,7 @@ Add this dependency to your project's build file:
499499
}
500500
501501
dependencies {
502-
implementation "com.launchdarkly:api-client:18.1.0"
502+
implementation "com.launchdarkly:api-client:19.0.0"
503503
}
504504
```
505505

@@ -513,7 +513,7 @@ mvn clean package
513513

514514
Then manually install the following JARs:
515515

516-
* `target/api-client-18.1.0.jar`
516+
* `target/api-client-19.0.0.jar`
517517
* `target/lib/*.jar`
518518

519519
## Getting Started
@@ -685,6 +685,7 @@ Class | Method | HTTP request | Description
685685
*DataExportDestinationsApi* | [**getDestinations**](docs/DataExportDestinationsApi.md#getDestinations) | **GET** /api/v2/destinations | List destinations
686686
*DataExportDestinationsApi* | [**patchDestination**](docs/DataExportDestinationsApi.md#patchDestination) | **PATCH** /api/v2/destinations/{projectKey}/{environmentKey}/{id} | Update Data Export destination
687687
*DataExportDestinationsApi* | [**postDestination**](docs/DataExportDestinationsApi.md#postDestination) | **POST** /api/v2/destinations/{projectKey}/{environmentKey} | Create Data Export destination
688+
*DataExportDestinationsApi* | [**postGenerateTrustPolicy**](docs/DataExportDestinationsApi.md#postGenerateTrustPolicy) | **POST** /api/v2/destinations/projects/{projKey}/environments/{envKey}/generate-trust-policy | Generate trust policy
688689
*DataExportDestinationsApi* | [**postGenerateWarehouseDestinationKeyPair**](docs/DataExportDestinationsApi.md#postGenerateWarehouseDestinationKeyPair) | **POST** /api/v2/destinations/generate-warehouse-destination-key-pair | Generate Snowflake destination key pair
689690
*EnvironmentsApi* | [**deleteEnvironment**](docs/EnvironmentsApi.md#deleteEnvironment) | **DELETE** /api/v2/projects/{projectKey}/environments/{environmentKey} | Delete environment
690691
*EnvironmentsApi* | [**getEnvironment**](docs/EnvironmentsApi.md#getEnvironment) | **GET** /api/v2/projects/{projectKey}/environments/{environmentKey} | Get environment
@@ -1177,6 +1178,7 @@ Class | Method | HTTP request | Description
11771178
- [FollowersPerFlag](docs/FollowersPerFlag.md)
11781179
- [ForbiddenErrorRep](docs/ForbiddenErrorRep.md)
11791180
- [FormVariable](docs/FormVariable.md)
1181+
- [GenerateTrustPolicyPostRep](docs/GenerateTrustPolicyPostRep.md)
11801182
- [GenerateWarehouseDestinationKeyPairPostRep](docs/GenerateWarehouseDestinationKeyPairPostRep.md)
11811183
- [GetAnnouncementsPublic200Response](docs/GetAnnouncementsPublic200Response.md)
11821184
- [GuardedReleaseConfig](docs/GuardedReleaseConfig.md)
@@ -1426,6 +1428,8 @@ Class | Method | HTTP request | Description
14261428
- [TriggerPost](docs/TriggerPost.md)
14271429
- [TriggerWorkflowCollectionRep](docs/TriggerWorkflowCollectionRep.md)
14281430
- [TriggerWorkflowRep](docs/TriggerWorkflowRep.md)
1431+
- [TrustPolicyDetails](docs/TrustPolicyDetails.md)
1432+
- [TrustPolicyStatement](docs/TrustPolicyStatement.md)
14291433
- [UnauthorizedErrorRep](docs/UnauthorizedErrorRep.md)
14301434
- [UnlinkResourceSuccessResponse](docs/UnlinkResourceSuccessResponse.md)
14311435
- [UpdatePhaseStatusInput](docs/UpdatePhaseStatusInput.md)

0 commit comments

Comments
 (0)