|
2 | 2 | * LaunchDarkly REST API
|
3 | 3 | * Build custom integrations with the LaunchDarkly REST API
|
4 | 4 | *
|
5 |
| - * OpenAPI spec version: 3.7.0 |
| 5 | + * OpenAPI spec version: 3.7.1 |
6 | 6 | * Contact: support@launchdarkly.com
|
7 | 7 | *
|
8 | 8 | * NOTE: This class is auto generated by the swagger code generator program.
|
@@ -6635,10 +6635,10 @@ export class EnvironmentsApi {
|
6635 | 6635 | }
|
6636 | 6636 | /**
|
6637 | 6637 | *
|
6638 |
| - * @summary Reset an environment's mobile key with an optional expiry time for the old key. |
| 6638 | + * @summary 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. |
6639 | 6639 | * @param projectKey The project key, used to tie the flags together under one project so they can be managed together.
|
6640 | 6640 | * @param environmentKey The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
|
6641 |
| - * @param 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 |
| 6641 | + * @param 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. |
6642 | 6642 | * @param {*} [options] Override http request options.
|
6643 | 6643 | */
|
6644 | 6644 | public resetEnvironmentMobileKey (projectKey: string, environmentKey: string, expiry?: number, options: any = {}) : Promise<{ response: http.ClientResponse; body: Environment; }> {
|
@@ -6707,7 +6707,7 @@ export class EnvironmentsApi {
|
6707 | 6707 | * @summary Reset an environment's SDK key with an optional expiry time for the old key.
|
6708 | 6708 | * @param projectKey The project key, used to tie the flags together under one project so they can be managed together.
|
6709 | 6709 | * @param environmentKey The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
|
6710 |
| - * @param 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 |
| 6710 | + * @param 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. |
6711 | 6711 | * @param {*} [options] Override http request options.
|
6712 | 6712 | */
|
6713 | 6713 | public resetEnvironmentSDKKey (projectKey: string, environmentKey: string, expiry?: number, options: any = {}) : Promise<{ response: http.ClientResponse; body: Environment; }> {
|
|
0 commit comments