Skip to content
This repository was archived by the owner on Sep 3, 2021. It is now read-only.

Commit 998f240

Browse files
author
LaunchDarklyCI
committed
Version 5.0.1 automatically generated from ld-openapi@b34b97c.
1 parent 36fa28f commit 998f240

File tree

6 files changed

+127
-98
lines changed

6 files changed

+127
-98
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ Class | Method | HTTP request | Description
180180
*TeamMembersApi* | [**getMembers**](docs/TeamMembersApi.md#getmembers) | **GET** /members | Returns a list of all members in the account.
181181
*TeamMembersApi* | [**patchMember**](docs/TeamMembersApi.md#patchmember) | **PATCH** /members/{memberId} | Modify a team member by ID.
182182
*TeamMembersApi* | [**postMembers**](docs/TeamMembersApi.md#postmembers) | **POST** /members | Invite new members.
183-
*UserRecordApi* | [**getUser**](docs/UserRecordApi.md#getuser) | **GET** /users/{projectKey}/{environmentKey}/{userKey} | Get a user by key.
184183
*UserSegmentsApi* | [**deleteUserSegment**](docs/UserSegmentsApi.md#deleteusersegment) | **DELETE** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Delete a user segment.
185184
*UserSegmentsApi* | [**getExpiringUserTargetsOnSegment**](docs/UserSegmentsApi.md#getexpiringusertargetsonsegment) | **GET** /segments/{projectKey}/{userSegmentKey}/expiring-user-targets/{environmentKey} | Get expiring user targets for user segment
186185
*UserSegmentsApi* | [**getUserSegment**](docs/UserSegmentsApi.md#getusersegment) | **GET** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Get a single user segment by key.
@@ -196,6 +195,7 @@ Class | Method | HTTP request | Description
196195
*UserSettingsApi* | [**putFlagSetting**](docs/UserSettingsApi.md#putflagsetting) | **PUT** /users/{projectKey}/{environmentKey}/{userKey}/flags/{featureFlagKey} | Specifically enable or disable a feature flag for a user based on their key.
197196
*UsersApi* | [**deleteUser**](docs/UsersApi.md#deleteuser) | **DELETE** /users/{projectKey}/{environmentKey}/{userKey} | Delete a user by ID.
198197
*UsersApi* | [**getSearchUsers**](docs/UsersApi.md#getsearchusers) | **GET** /user-search/{projectKey}/{environmentKey} | Search users in LaunchDarkly based on their last active date, or a search query. It should not be used to enumerate all users in LaunchDarkly-- use the List users API resource.
198+
*UsersApi* | [**getUser**](docs/UsersApi.md#getuser) | **GET** /users/{projectKey}/{environmentKey}/{userKey} | Get a user by key.
199199
*UsersApi* | [**getUsers**](docs/UsersApi.md#getusers) | **GET** /users/{projectKey}/{environmentKey} | List all users in the environment. Includes the total count of users. In each page, there will be up to 'limit' users returned (default 20). This is useful for exporting all users in the system for further analysis. Paginated collections will include a next link containing a URL with the next set of elements in the collection.
200200
*WebhooksApi* | [**deleteWebhook**](docs/WebhooksApi.md#deletewebhook) | **DELETE** /webhooks/{resourceId} | Delete a webhook by ID.
201201
*WebhooksApi* | [**getWebhook**](docs/WebhooksApi.md#getwebhook) | **GET** /webhooks/{resourceId} | Get a webhook by ID.

_client.sh

+11-10
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ case $state in
365365
"getMember[Get a single team member by ID.]" \
366366
"getMembers[Returns a list of all members in the account.]" \
367367
"patchMember[Modify a team member by ID.]" \
368-
"postMembers[Invite new members.]" "getUser[Get a user by key.]" "deleteUserSegment[Delete a user segment.]" \
368+
"postMembers[Invite new members.]" "deleteUserSegment[Delete a user segment.]" \
369369
"getExpiringUserTargetsOnSegment[Get expiring user targets for user segment]" \
370370
"getUserSegment[Get a single user segment by key.]" \
371371
"getUserSegments[Get a list of all user segments in the given project.]" \
@@ -378,6 +378,7 @@ case $state in
378378
"patchExpiringUserTargetsForFlags[Update, add, or delete expiring user targets for a single user on all flags]" \
379379
"putFlagSetting[Specifically enable or disable a feature flag for a user based on their key.]" "deleteUser[Delete a user by ID.]" \
380380
"getSearchUsers[Search users in LaunchDarkly based on their last active date, or a search query. It should not be used to enumerate all users in LaunchDarkly-- use the List users API resource.]" \
381+
"getUser[Get a user by key.]" \
381382
"getUsers[List all users in the environment. Includes the total count of users. In each page, there will be up to 'limit' users returned (default 20). This is useful for exporting all users in the system for further analysis. Paginated collections will include a next link containing a URL with the next set of elements in the collection.]" "deleteWebhook[Delete a webhook by ID.]" \
382383
"getWebhook[Get a webhook by ID.]" \
383384
"getWebhooks[Fetch a list of all webhooks.]" \
@@ -1023,15 +1024,6 @@ case $state in
10231024
)
10241025
_describe -t actions 'operations' _op_arguments -S '' && ret=0
10251026
;;
1026-
getUser)
1027-
local -a _op_arguments
1028-
_op_arguments=(
1029-
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
1030-
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
1031-
"userKey=:[PATH] The user's key."
1032-
)
1033-
_describe -t actions 'operations' _op_arguments -S '' && ret=0
1034-
;;
10351027
deleteUserSegment)
10361028
local -a _op_arguments
10371029
_op_arguments=(
@@ -1171,6 +1163,15 @@ case $state in
11711163
)
11721164
_describe -t actions 'operations' _op_arguments -S '' && ret=0
11731165
;;
1166+
getUser)
1167+
local -a _op_arguments
1168+
_op_arguments=(
1169+
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
1170+
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
1171+
"userKey=:[PATH] The user's key."
1172+
)
1173+
_describe -t actions 'operations' _op_arguments -S '' && ret=0
1174+
;;
11741175
getUsers)
11751176
local -a _op_arguments
11761177
_op_arguments=(

0 commit comments

Comments
 (0)