You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*EnvironmentsApi* | [**get_environment**](docs/EnvironmentsApi.md#get_environment) | **GET** /projects/{projectKey}/environments/{environmentKey} | Get an environment given a project and key.
114
114
*EnvironmentsApi* | [**patch_environment**](docs/EnvironmentsApi.md#patch_environment) | **PATCH** /projects/{projectKey}/environments/{environmentKey} | Modify an environment by ID.
115
115
*EnvironmentsApi* | [**post_environment**](docs/EnvironmentsApi.md#post_environment) | **POST** /projects/{projectKey}/environments | Create a new environment in a specified project with a given name, key, and swatch color.
116
-
*EnvironmentsApi* | [**reset_environment_mobile_key**](docs/EnvironmentsApi.md#reset_environment_mobile_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/mobileKey | Reset an environment's mobile key with an optional expiry time for the old key.
116
+
*EnvironmentsApi* | [**reset_environment_mobile_key**](docs/EnvironmentsApi.md#reset_environment_mobile_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/mobileKey | Reset an environment's mobile key. The optional expiry for the old key is deprecated for this endpoint, so the old key will always expire immediately.
117
117
*EnvironmentsApi* | [**reset_environment_sdk_key**](docs/EnvironmentsApi.md#reset_environment_sdk_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/apiKey | Reset an environment's SDK key with an optional expiry time for the old key.
118
118
*FeatureFlagsApi* | [**copy_feature_flag**](docs/FeatureFlagsApi.md#copy_feature_flag) | **POST** /flags/{projectKey}/{featureFlagKey}/copy | Copies the feature flag configuration from one environment to the same feature flag in another environment.
119
119
*FeatureFlagsApi* | [**delete_feature_flag**](docs/FeatureFlagsApi.md#delete_feature_flag) | **DELETE** /flags/{projectKey}/{featureFlagKey} | Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.
[**get_environment**](EnvironmentsApi.md#get_environment) | **GET** /projects/{projectKey}/environments/{environmentKey} | Get an environment given a project and key.
9
9
[**patch_environment**](EnvironmentsApi.md#patch_environment) | **PATCH** /projects/{projectKey}/environments/{environmentKey} | Modify an environment by ID.
10
10
[**post_environment**](EnvironmentsApi.md#post_environment) | **POST** /projects/{projectKey}/environments | Create a new environment in a specified project with a given name, key, and swatch color.
11
-
[**reset_environment_mobile_key**](EnvironmentsApi.md#reset_environment_mobile_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/mobileKey | Reset an environment's mobile key with an optional expiry time for the old key.
11
+
[**reset_environment_mobile_key**](EnvironmentsApi.md#reset_environment_mobile_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/mobileKey | Reset an environment's mobile key. The optional expiry for the old key is deprecated for this endpoint, so the old key will always expire immediately.
12
12
[**reset_environment_sdk_key**](EnvironmentsApi.md#reset_environment_sdk_key) | **POST** /projects/{projectKey}/environments/{environmentKey}/apiKey | Reset an environment's SDK key with an optional expiry time for the old key.
13
13
14
14
@@ -232,7 +232,7 @@ Name | Type | Description | Notes
project_key ='project_key_example'# str | The project key, used to tie the flags together under one project so they can be managed together.
254
254
environment_key ='environment_key_example'# str | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
255
-
expiry =789# int | An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately (optional)
255
+
expiry =789# int | The expiry parameter is deprecated for this endpoint, so the old mobile key will always expire immediately. This parameter will be removed in an upcoming major API client version. (optional)
256
256
257
257
try:
258
-
# Reset an environment's mobile key with an optional expiry time for the old key.
258
+
# Reset an environment's mobile key. The optional expiry for the old key is deprecated for this endpoint, so the old key will always expire immediately.
**project_key** | **str**| The project key, used to tie the flags together under one project so they can be managed together. |
270
270
**environment_key** | **str**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
271
-
**expiry** | **int**| An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately | [optional]
271
+
**expiry** | **int**| The expiry parameter is deprecated for this endpoint, so the old mobile key will always expire immediately. This parameter will be removed in an upcoming major API client version. | [optional]
project_key ='project_key_example'# str | The project key, used to tie the flags together under one project so they can be managed together.
310
310
environment_key ='environment_key_example'# str | The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
311
-
expiry =789# int | An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately (optional)
311
+
expiry =789# int | An expiration time for the old environment SDK key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately. (optional)
312
312
313
313
try:
314
314
# Reset an environment's SDK key with an optional expiry time for the old key.
@@ -324,7 +324,7 @@ Name | Type | Description | Notes
**project_key** | **str**| The project key, used to tie the flags together under one project so they can be managed together. |
326
326
**environment_key** | **str**| The environment key, used to tie together flag configuration and users under one environment so they can be managed together. |
327
-
**expiry** | **int**| An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately | [optional]
327
+
**expiry** | **int**| An expiration time for the old environment SDK key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately. | [optional]
"""Reset an environment's mobile key with an optional expiry time for the old key. # noqa: E501
465
+
"""Reset an environment's mobile key. The optional expiry for the old key is deprecated for this endpoint, so the old key will always expire immediately. # noqa: E501
466
466
467
467
This method makes a synchronous HTTP request by default. To make an
:param str project_key: The project key, used to tie the flags together under one project so they can be managed together. (required)
474
474
:param str environment_key: The environment key, used to tie together flag configuration and users under one environment so they can be managed together. (required)
475
-
:param int expiry: An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately
475
+
:param int expiry: The expiry parameter is deprecated for this endpoint, so the old mobile key will always expire immediately. This parameter will be removed in an upcoming major API client version.
"""Reset an environment's mobile key with an optional expiry time for the old key. # noqa: E501
488
+
"""Reset an environment's mobile key. The optional expiry for the old key is deprecated for this endpoint, so the old key will always expire immediately. # noqa: E501
489
489
490
490
This method makes a synchronous HTTP request by default. To make an
:param str project_key: The project key, used to tie the flags together under one project so they can be managed together. (required)
497
497
:param str environment_key: The environment key, used to tie together flag configuration and users under one environment so they can be managed together. (required)
498
-
:param int expiry: An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately
498
+
:param int expiry: The expiry parameter is deprecated for this endpoint, so the old mobile key will always expire immediately. This parameter will be removed in an upcoming major API client version.
:param str project_key: The project key, used to tie the flags together under one project so they can be managed together. (required)
583
583
:param str environment_key: The environment key, used to tie together flag configuration and users under one environment so they can be managed together. (required)
584
-
:param int expiry: An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately
584
+
:param int expiry: An expiration time for the old environment SDK key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately.
:param str project_key: The project key, used to tie the flags together under one project so they can be managed together. (required)
606
606
:param str environment_key: The environment key, used to tie together flag configuration and users under one environment so they can be managed together. (required)
607
-
:param int expiry: An expiration time for the old environment SDK or mobile key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately
607
+
:param int expiry: An expiration time for the old environment SDK key, expressed as a Unix epoch time in milliseconds. By default, the key will expire immediately.
0 commit comments