Skip to content

Commit d090e12

Browse files
author
LaunchDarklyReleaseBot
committed
Version 18.1.0 automatically generated from ld-openapi.
1 parent 1ec10bc commit d090e12

30 files changed

+306
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ To learn more about how EOL is determined, read LaunchDarkly's [End of Life (EOL
447447
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
448448

449449
- API version: 2.0
450-
- Package version: 18.0.2
450+
- Package version: 18.1.0
451451
- Generator version: 7.16.0
452452
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
453453
For more information, please visit [https://support.launchdarkly.com](https://support.launchdarkly.com)

docs/Environment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**color** | **str** | The color used to indicate this environment in the UI |
1515
**default_ttl** | **int** | The default time (in minutes) that the PHP SDK can cache feature flag rules locally |
1616
**secure_mode** | **bool** | Ensures that one end user of the client-side SDK cannot inspect the variations for another end user |
17+
**access** | [**Access**](Access.md) | | [optional]
1718
**default_track_events** | **bool** | Enables tracking detailed information for new flags by default |
1819
**require_comments** | **bool** | Whether members who modify flags and segments through the LaunchDarkly user interface are required to add a comment |
1920
**confirm_changes** | **bool** | Whether members who modify flags and segments through the LaunchDarkly user interface are required to confirm those changes |

docs/Experiment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**creation_date** | **int** | |
1414
**environment_key** | **str** | |
1515
**archived_date** | **int** | | [optional]
16+
**tags** | **List[str]** | Tags for the experiment | [optional]
1617
**links** | [**Dict[str, Link]**](Link.md) | The location and content type of related resources |
1718
**holdout_id** | **str** | The holdout ID | [optional]
1819
**current_iteration** | [**IterationRep**](IterationRep.md) | | [optional]

docs/ExperimentPost.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**key** | **str** | The experiment key |
1212
**iteration** | [**IterationInput**](IterationInput.md) | |
1313
**holdout_id** | **str** | The ID of the holdout | [optional]
14+
**tags** | **List[str]** | Tags for the experiment | [optional]
1415

1516
## Example
1617

docs/MetricsBetaApi.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,10 @@ List metric groups
291291
Get a list of all metric groups for the specified project.
292292

293293
### Expanding the metric groups response
294-
LaunchDarkly supports one field for expanding the "Get metric groups" response. By default, these fields are **not** included in the response.
295294

296-
To expand the response, append the `expand` query parameter and add a comma-separated list with the following field:
295+
This endpoint does not support response expansion.
297296

298-
- `experiments` includes all experiments from the specific project that use the metric group
299-
300-
For example, `expand=experiments` includes the `experiments` field in the response.
297+
Although the API accepts an `expand` query parameter for compatibility reasons, it does not currently modify the response. The parameter is reserved for future use.
301298

302299
### Filtering metric groups
303300

@@ -367,7 +364,7 @@ with launchdarkly_api.ApiClient(configuration) as api_client:
367364
project_key = 'project_key_example' # str | The project key
368365
filter = 'filter_example' # str | Accepts filter by `experimentStatus`, `query`, `kind`, `hasConnections`, `maintainerIds`, and `maintainerTeamKey`. Example: `filter=experimentStatus equals 'running' and query equals 'test'`. (optional)
369366
sort = 'sort_example' # str | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. (optional)
370-
expand = 'expand_example' # str | A comma-separated list of properties that can reveal additional information in the response. (optional)
367+
expand = 'expand_example' # str | This parameter is reserved for future use and is not currently supported on this endpoint. (optional)
371368
limit = 56 # int | The number of metric groups to return in the response. Defaults to 20. Maximum limit is 50. (optional)
372369
offset = 56 # int | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and returns the next `limit` items. (optional)
373370

@@ -390,7 +387,7 @@ Name | Type | Description | Notes
390387
**project_key** | **str**| The project key |
391388
**filter** | **str**| Accepts filter by `experimentStatus`, `query`, `kind`, `hasConnections`, `maintainerIds`, and `maintainerTeamKey`. Example: `filter=experimentStatus equals 'running' and query equals 'test'`. | [optional]
392389
**sort** | **str**| A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. | [optional]
393-
**expand** | **str**| A comma-separated list of properties that can reveal additional information in the response. | [optional]
390+
**expand** | **str**| This parameter is reserved for future use and is not currently supported on this endpoint. | [optional]
394391
**limit** | **int**| The number of metric groups to return in the response. Defaults to 20. Maximum limit is 50. | [optional]
395392
**offset** | **int**| Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and returns the next `limit` items. | [optional]
396393

launchdarkly_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "18.0.2"
18+
__version__ = "18.1.0"
1919

2020
# Define package exports
2121
__all__ = [

0 commit comments

Comments
 (0)