Skip to content

Commit 999da9f

Browse files
author
LaunchDarklyCI
committed
Version 3.5.0 automatically generated from ld-openapi@807f032.
1 parent 9c0fd53 commit 999da9f

File tree

235 files changed

+573
-241
lines changed

Some content is hidden

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

235 files changed

+573
-241
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Build custom integrations with the LaunchDarkly REST API
88

99
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
1010

11-
- API version: 3.4.0
12-
- Package version: 3.4.0
11+
- API version: 3.5.0
12+
- Package version: 3.5.0
1313
- Build package: io.swagger.codegen.languages.PythonClientCodegen
1414
For more information, please visit [https://support.launchdarkly.com](https://support.launchdarkly.com)
1515

@@ -165,6 +165,7 @@ Class | Method | HTTP request | Description
165165
- [AuditLogEntry](docs/AuditLogEntry.md)
166166
- [AuditLogEntryTarget](docs/AuditLogEntryTarget.md)
167167
- [Clause](docs/Clause.md)
168+
- [ClientSideAvailability](docs/ClientSideAvailability.md)
168169
- [CopyActions](docs/CopyActions.md)
169170
- [CustomProperty](docs/CustomProperty.md)
170171
- [CustomPropertyValues](docs/CustomPropertyValues.md)

docs/ClientSideAvailability.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ClientSideAvailability
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**using_environment_id** | **bool** | When set to true, this flag will be available to SDKs using the client-side id. | [optional]
7+
**using_mobile_key** | **bool** | When set to true, this flag will be available to SDKS using a mobile key. | [optional]
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/FeatureFlag.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**environments** | [**dict(str, FeatureFlagConfig)**](FeatureFlagConfig.md) | | [optional]
2222
**archived_date** | **int** | A unix epoch time in milliseconds specifying the archived time of this flag. | [optional]
2323
**archived** | **bool** | Whether or not this flag is archived. | [optional]
24+
**client_side_availability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
2425
**defaults** | [**Defaults**](Defaults.md) | | [optional]
2526

2627
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/FeatureFlagBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**temporary** | **bool** | Whether or not the flag is a temporary flag. | [optional]
1111
**tags** | **list[str]** | Tags for the feature flag. | [optional]
1212
**include_in_snippet** | **bool** | Whether or not this flag should be made available to the client-side JavaScript SDK. | [optional]
13+
**client_side_availability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1314
**defaults** | [**Defaults**](Defaults.md) | | [optional]
1415

1516
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/Project.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**include_in_snippet_by_default** | **bool** | | [optional]
1111
**environments** | [**list[Environment]**](Environment.md) | | [optional]
1212
**tags** | **list[str]** | An array of tags for this project. | [optional]
13+
**default_client_side_availability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1314

1415
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1516

docs/ProjectBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**include_in_snippet_by_default** | **bool** | | [optional]
99
**tags** | **list[str]** | | [optional]
1010
**environments** | [**list[EnvironmentPost]**](EnvironmentPost.md) | | [optional]
11+
**default_client_side_availability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1112

1213
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1314

launchdarkly_api/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Build custom integrations with the LaunchDarkly REST API # noqa: E501
99
10-
OpenAPI spec version: 3.4.0
10+
OpenAPI spec version: 3.5.0
1111
1212
Generated by: https://github.com/swagger-api/swagger-codegen.git
1313
"""
@@ -39,6 +39,7 @@
3939
from launchdarkly_api.models.audit_log_entry import AuditLogEntry
4040
from launchdarkly_api.models.audit_log_entry_target import AuditLogEntryTarget
4141
from launchdarkly_api.models.clause import Clause
42+
from launchdarkly_api.models.client_side_availability import ClientSideAvailability
4243
from launchdarkly_api.models.copy_actions import CopyActions
4344
from launchdarkly_api.models.custom_property import CustomProperty
4445
from launchdarkly_api.models.custom_property_values import CustomPropertyValues

launchdarkly_api/api/access_tokens_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Build custom integrations with the LaunchDarkly REST API # noqa: E501
77
8-
OpenAPI spec version: 3.4.0
8+
OpenAPI spec version: 3.5.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

launchdarkly_api/api/audit_log_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Build custom integrations with the LaunchDarkly REST API # noqa: E501
77
8-
OpenAPI spec version: 3.4.0
8+
OpenAPI spec version: 3.5.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

launchdarkly_api/api/custom_roles_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Build custom integrations with the LaunchDarkly REST API # noqa: E501
77
8-
OpenAPI spec version: 3.4.0
8+
OpenAPI spec version: 3.5.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)