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

Commit da02918

Browse files
author
LaunchDarklyCI
committed
Version 3.2.0 automatically generated from ld-openapi@4fca2cf.
1 parent 533e661 commit da02918

12 files changed

+463
-51
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,10 @@ Class | Method | HTTP request | Description
149149
*TeamMembersApi* | [**patchMember**](docs/TeamMembersApi.md#patchmember) | **PATCH** /members/{memberId} | Modify a team member by ID.
150150
*TeamMembersApi* | [**postMembers**](docs/TeamMembersApi.md#postmembers) | **POST** /members | Invite new members.
151151
*UserSegmentsApi* | [**deleteUserSegment**](docs/UserSegmentsApi.md#deleteusersegment) | **DELETE** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Delete a user segment.
152+
*UserSegmentsApi* | [**getExpiringUserTargetsOnSegment**](docs/UserSegmentsApi.md#getexpiringusertargetsonsegment) | **GET** /segments/{projectKey}/{userSegmentKey}/expiring-user-targets/{environmentKey} | Get expiring user targets for user segment
152153
*UserSegmentsApi* | [**getUserSegment**](docs/UserSegmentsApi.md#getusersegment) | **GET** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Get a single user segment by key.
153154
*UserSegmentsApi* | [**getUserSegments**](docs/UserSegmentsApi.md#getusersegments) | **GET** /segments/{projectKey}/{environmentKey} | Get a list of all user segments in the given project.
155+
*UserSegmentsApi* | [**patchExpiringUserTargetsOnSegment**](docs/UserSegmentsApi.md#patchexpiringusertargetsonsegment) | **PATCH** /segments/{projectKey}/{userSegmentKey}/expiring-user-targets/{environmentKey} | Update, add, or delete expiring user targets on user segment
154156
*UserSegmentsApi* | [**patchUserSegment**](docs/UserSegmentsApi.md#patchusersegment) | **PATCH** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Perform a partial update to a user segment.
155157
*UserSegmentsApi* | [**postUserSegment**](docs/UserSegmentsApi.md#postusersegment) | **POST** /segments/{projectKey}/{environmentKey} | Creates a new user segment.
156158
*UserSettingsApi* | [**getExpiringUserTargetsForUser**](docs/UserSettingsApi.md#getexpiringusertargetsforuser) | **GET** /users/{projectKey}/{userKey}/expiring-user-targets/{environmentKey} | Get expiring dates on flags for user
@@ -224,6 +226,8 @@ Class | Method | HTTP request | Description
224226
- [Role](docs/Role.md)
225227
- [Rollout](docs/Rollout.md)
226228
- [Rule](docs/Rule.md)
229+
- [SemanticPatchOperation](docs/SemanticPatchOperation.md)
230+
- [SemanticPatchOperation_instructions](docs/SemanticPatchOperation_instructions.md)
227231
- [Site](docs/Site.md)
228232
- [Statement](docs/Statement.md)
229233
- [Stream](docs/Stream.md)
@@ -253,6 +257,7 @@ Class | Method | HTTP request | Description
253257
- [UserSettingsBody](docs/UserSettingsBody.md)
254258
- [UserTargetingExpirationForFlag](docs/UserTargetingExpirationForFlag.md)
255259
- [UserTargetingExpirationForFlags](docs/UserTargetingExpirationForFlags.md)
260+
- [UserTargetingExpirationForSegment](docs/UserTargetingExpirationForSegment.md)
256261
- [UserTargetingExpirationOnFlagsForUser](docs/UserTargetingExpirationOnFlagsForUser.md)
257262
- [UserTargetingExpirationResourceIdForFlag](docs/UserTargetingExpirationResourceIdForFlag.md)
258263
- [Users](docs/Users.md)

_client.sh

+22-4
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,10 @@ case $state in
337337
"getMembers[Returns a list of all members in the account.]" \
338338
"patchMember[Modify a team member by ID.]" \
339339
"postMembers[Invite new members.]" "deleteUserSegment[Delete a user segment.]" \
340+
"getExpiringUserTargetsOnSegment[Get expiring user targets for user segment]" \
340341
"getUserSegment[Get a single user segment by key.]" \
341342
"getUserSegments[Get a list of all user segments in the given project.]" \
343+
"patchExpiringUserTargetsOnSegment[Update, add, or delete expiring user targets on user segment]" \
342344
"patchUserSegment[Perform a partial update to a user segment.]" \
343345
"postUserSegment[Creates a new user segment.]" "getExpiringUserTargetsForUser[Get expiring dates on flags for user]" \
344346
"getUserFlagSetting[Fetch a single flag setting for a user by key.]" \
@@ -616,8 +618,7 @@ case $state in
616618
"archived=true:[QUERY] When set to 1, archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
617619
"archived=false:[QUERY] When set to 1, archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
618620
"limit=:[QUERY] The number of objects to return. Defaults to -1, which returns everything."
619-
"number=true:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
620-
"number=false:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
621+
"offset=:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
621622
"filter=:[QUERY] A comma-separated list of filters. Each filter is of the form field:value."
622623
"sort=:[QUERY] A comma-separated list of fields to sort by. A field prefixed by a - will be sorted in descending order."
623624
"tag=:[QUERY] Filter by tag. A tag can be used to group flags across projects."
@@ -712,8 +713,7 @@ case $state in
712713
local -a _op_arguments
713714
_op_arguments=(
714715
"limit=:[QUERY] The number of objects to return. Defaults to -1, which returns everything."
715-
"number=true:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
716-
"number=false:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
716+
"offset=:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
717717
"filter=:[QUERY] A comma-separated list of filters. Each filter is of the form field:value."
718718
"sort=:[QUERY] A comma-separated list of fields to sort by. A field prefixed by a - will be sorted in descending order."
719719
)
@@ -737,6 +737,15 @@ case $state in
737737
_op_arguments=(
738738
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
739739
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
740+
"userSegmentKey=:[PATH] The user segment's key. The key identifies the user segment in your code."
741+
)
742+
_describe -t actions 'operations' _op_arguments -S '' && ret=0
743+
;;
744+
getExpiringUserTargetsOnSegment)
745+
local -a _op_arguments
746+
_op_arguments=(
747+
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
748+
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
740749
"userSegmentKey=:[PATH] The user segment's key. The key identifies the user segment in your code."
741750
)
742751
_describe -t actions 'operations' _op_arguments -S '' && ret=0
@@ -759,6 +768,15 @@ case $state in
759768
)
760769
_describe -t actions 'operations' _op_arguments -S '' && ret=0
761770
;;
771+
patchExpiringUserTargetsOnSegment)
772+
local -a _op_arguments
773+
_op_arguments=(
774+
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
775+
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
776+
"userSegmentKey=:[PATH] The user segment's key. The key identifies the user segment in your code."
777+
)
778+
_describe -t actions 'operations' _op_arguments -S '' && ret=0
779+
;;
762780
patchUserSegment)
763781
local -a _op_arguments
764782
_op_arguments=(

0 commit comments

Comments
 (0)