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* | [**postToken**](docs/AccessTokensApi.md#posttoken) | **POST** /tokens | Create a new token.
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.
102
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.
103
109
*AuditLogApi* | [**getAuditLogEntry**](docs/AuditLogApi.md#getauditlogentry) | **GET** /auditlog/{resourceId} | Use this endpoint to fetch a single audit log entry by its resouce ID.
104
110
*CustomRolesApi* | [**deleteCustomRole**](docs/CustomRolesApi.md#deletecustomrole) | **DELETE** /roles/{customRoleKey} | Delete a custom role by key.
Copy file name to clipboardExpand all lines: _client.sh
+51-3Lines changed: 51 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -296,7 +296,12 @@ case $state in
296
296
ops)
297
297
# Operations
298
298
_values "Operations" \
299
-
"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.]" \
299
+
"deleteToken[Delete an access token by ID.]" \
300
+
"getToken[Get a single access token by ID.]" \
301
+
"getTokens[Returns a list of tokens in the account.]" \
302
+
"patchToken[Modify an access tokenby ID.]" \
303
+
"postToken[Create a new token.]" \
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.]" \
300
305
"getAuditLogEntry[Use this endpoint to fetch a single audit log entry by its resouce ID.]""deleteCustomRole[Delete a custom role by key.]" \
301
306
"getCustomRole[Get one custom role by key.]" \
302
307
"getCustomRoles[Return a complete list of custom roles.]" \
"showAll=true:[QUERY] If set to true, and the authentication access token has the \"Admin\" role, personal access tokens for all members will be retrieved."
386
+
"showAll=false:[QUERY] If set to true, and the authentication access token has the \"Admin\" role, personal access tokens for all members will be retrieved."
"expiry=:[QUERY] An expiration time for the old token key, expressed as a Unix epoch time in milliseconds. By default, the token will expire immediately."
"env=:[QUERY] By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env=[\"production\"] will restrict the returned configurations to just your production environment."
616
664
"summary=true:[QUERY] By default in api version >= 1, flags will _not_ include their list of prerequisites, targets or rules. Set summary=0 to include these fields for each flag returned."
617
665
"summary=false:[QUERY] By default in api version >= 1, flags will _not_ include their list of prerequisites, targets or rules. Set summary=0 to include these fields for each flag returned."
618
-
"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."
619
-
"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."
666
+
"archived=true:[QUERY] When set to 1, only archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
667
+
"archived=false:[QUERY] When set to 1, only archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
620
668
"limit=:[QUERY] The number of objects to return. Defaults to -1, which returns everything."
621
669
"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."
622
670
"filter=:[QUERY] A comma-separated list of filters. Each filter is of the form field:value."
0 commit comments