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
{{ message }}
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
*AccessTokensApi* | [**patchToken**](docs/AccessTokensApi.md#patchtoken) | **PATCH** /tokens/{tokenId} | Modify an access token by ID.
106
106
*AccessTokensApi* | [**postToken**](docs/AccessTokensApi.md#posttoken) | **POST** /tokens | Create a new token.
107
107
*AccessTokensApi* | [**resetToken**](docs/AccessTokensApi.md#resettoken) | **POST** /tokens/{tokenId}/reset | Reset an access token's secret key with an optional expiry time for the old key.
108
108
*AuditLogApi* | [**getAuditLogEntries**](docs/AuditLogApi.md#getauditlogentries) | **GET** /auditlog | Get a list of all audit log entries. The query parameters allow you to restrict the returned results by date ranges, resource specifiers, or a full-text search query.
*ProjectsApi* | [**getProjects**](docs/ProjectsApi.md#getprojects) | **GET** /projects | Returns a list of all projects in the account.
148
148
*ProjectsApi* | [**patchProject**](docs/ProjectsApi.md#patchproject) | **PATCH** /projects/{projectKey} | Modify a project by ID.
149
149
*ProjectsApi* | [**postProject**](docs/ProjectsApi.md#postproject) | **POST** /projects | Create a new project with the given key and name.
150
+
*RelayProxyConfigurationsApi* | [**deleteRelayProxyConfig**](docs/RelayProxyConfigurationsApi.md#deleterelayproxyconfig) | **DELETE** /account/relay-auto-configs/{id} | Delete a relay proxy configuration by ID.
151
+
*RelayProxyConfigurationsApi* | [**getRelayProxyConfig**](docs/RelayProxyConfigurationsApi.md#getrelayproxyconfig) | **GET** /account/relay-auto-configs/{id} | Get a single relay proxy configuration by ID.
152
+
*RelayProxyConfigurationsApi* | [**getRelayProxyConfigs**](docs/RelayProxyConfigurationsApi.md#getrelayproxyconfigs) | **GET** /account/relay-auto-configs | Returns a list of relay proxy configurations in the account.
153
+
*RelayProxyConfigurationsApi* | [**patchRelayProxyConfig**](docs/RelayProxyConfigurationsApi.md#patchrelayproxyconfig) | **PATCH** /account/relay-auto-configs/{id} | Modify a relay proxy configuration by ID.
154
+
*RelayProxyConfigurationsApi* | [**postRelayAutoConfig**](docs/RelayProxyConfigurationsApi.md#postrelayautoconfig) | **POST** /account/relay-auto-configs | Create a new relay proxy config.
155
+
*RelayProxyConfigurationsApi* | [**resetRelayProxyConfig**](docs/RelayProxyConfigurationsApi.md#resetrelayproxyconfig) | **POST** /account/relay-auto-configs/{id}/reset | Reset a relay proxy configuration's secret key with an optional expiry time for the old key.
*UserSegmentsApi* | [**patchExpiringUserTargetsOnSegment**](docs/UserSegmentsApi.md#patchexpiringusertargetsonsegment) | **PATCH** /segments/{projectKey}/{userSegmentKey}/expiring-user-targets/{environmentKey} | Update, add, or delete expiring user targets on user segment
162
168
*UserSegmentsApi* | [**patchUserSegment**](docs/UserSegmentsApi.md#patchusersegment) | **PATCH** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Perform a partial update to a user segment.
163
169
*UserSegmentsApi* | [**postUserSegment**](docs/UserSegmentsApi.md#postusersegment) | **POST** /segments/{projectKey}/{environmentKey} | Creates a new user segment.
170
+
*UserSegmentsApi* | [**updatedUnboundedSegmentTargets**](docs/UserSegmentsApi.md#updatedunboundedsegmenttargets) | **POST** /segments/{projectKey}/{environmentKey}/{userSegmentKey}/unbounded-users | Update targets included or excluded in an unbounded segment
164
171
*UserSettingsApi* | [**getExpiringUserTargetsForUser**](docs/UserSettingsApi.md#getexpiringusertargetsforuser) | **GET** /users/{projectKey}/{userKey}/expiring-user-targets/{environmentKey} | Get expiring dates on flags for user
165
172
*UserSettingsApi* | [**getUserFlagSetting**](docs/UserSettingsApi.md#getuserflagsetting) | **GET** /users/{projectKey}/{environmentKey}/{userKey}/flags/{featureFlagKey} | Fetch a single flag setting for a user by key.
166
173
*UserSettingsApi* | [**getUserFlagSettings**](docs/UserSettingsApi.md#getuserflagsettings) | **GET** /users/{projectKey}/{environmentKey}/{userKey}/flags | Fetch a single flag setting for a user by key.
Copy file name to clipboardExpand all lines: _client.sh
+59-3
Original file line number
Diff line number
Diff line change
@@ -299,7 +299,7 @@ case $state in
299
299
"deleteToken[Delete an access token by ID.]" \
300
300
"getToken[Get a single access token by ID.]" \
301
301
"getTokens[Returns a list of tokens in the account.]" \
302
-
"patchToken[Modify an access tokenby ID.]" \
302
+
"patchToken[Modify an access token by ID.]" \
303
303
"postToken[Create a new token.]" \
304
304
"resetToken[Reset an access token's secret key with an optional expiry time for the old key.]""getAuditLogEntries[Get a list of all audit log entries. The query parameters allow you to restrict the returned results by date ranges, resource specifiers, or a full-text search query.]" \
305
305
"getAuditLogEntry[Use this endpoint to fetch a single audit log entry by its resouce ID.]""deleteCustomRole[Delete a custom role by key.]" \
@@ -336,7 +336,12 @@ case $state in
336
336
"getProject[Fetch a single project by key.]" \
337
337
"getProjects[Returns a list of all projects in the account.]" \
338
338
"patchProject[Modify a project by ID.]" \
339
-
"postProject[Create a new project with the given key and name.]""getRoot[]""deleteMember[Delete a team member by ID.]" \
339
+
"postProject[Create a new project with the given key and name.]""deleteRelayProxyConfig[Delete a relay proxy configuration by ID.]" \
340
+
"getRelayProxyConfig[Get a single relay proxy configuration by ID.]" \
341
+
"getRelayProxyConfigs[Returns a list of relay proxy configurations in the account.]" \
342
+
"patchRelayProxyConfig[Modify a relay proxy configuration by ID.]" \
343
+
"postRelayAutoConfig[Create a new relay proxy config.]" \
344
+
"resetRelayProxyConfig[Reset a relay proxy configuration's secret key with an optional expiry time for the old key.]""getRoot[]""deleteMember[Delete a team member by ID.]" \
340
345
"getMe[Get the current team member associated with the token]" \
341
346
"getMember[Get a single team member by ID.]" \
342
347
"getMembers[Returns a list of all members in the account.]" \
@@ -347,7 +352,8 @@ case $state in
347
352
"getUserSegments[Get a list of all user segments in the given project.]" \
348
353
"patchExpiringUserTargetsOnSegment[Update, add, or delete expiring user targets on user segment]" \
349
354
"patchUserSegment[Perform a partial update to a user segment.]" \
350
-
"postUserSegment[Creates a new user segment.]""getExpiringUserTargetsForUser[Get expiring dates on flags for user]" \
355
+
"postUserSegment[Creates a new user segment.]" \
356
+
"updatedUnboundedSegmentTargets[Update targets included or excluded in an unbounded segment]""getExpiringUserTargetsForUser[Get expiring dates on flags for user]" \
351
357
"getUserFlagSetting[Fetch a single flag setting for a user by key.]" \
352
358
"getUserFlagSettings[Fetch a single flag setting for a user by key.]" \
353
359
"patchExpiringUserTargetsForFlags[Update, add, or delete expiring user targets for a single user on all flags]" \
"expiry=:[QUERY] An expiration time for the old relay proxy configuration key, expressed as a Unix epoch time in milliseconds. By default, the relay proxy configuration will expire immediately"
0 commit comments