Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added "isSharable" attribute to the queries
  • Loading branch information
sujitnewrelic committed Nov 25, 2025
commit e38b79a094916b7a8a1a4dfd9f893008212a491b
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,14 @@ Use the `{customerAdministration {secret}}` query to retrieve secrets along with
The description of the secret.
</td>
</tr>
<tr>
<td>
`isSharable`
</td>
<td>
Indicates whether the secret is a [sharable secret](#sharable-secrets) with fine-grained access control. If `true`, the secret uses fine-grained permissions and is private to the creator by default. If `false`, it's a standard secret accessible to all users with permissions in the account or organization.
</td>
</tr>
<tr>
<td>
`key`
Expand Down Expand Up @@ -901,6 +909,7 @@ Use the `{customerAdministration {secret}}` query to retrieve secrets along with
"customerAdministration": {
"secret": {
"description": "ZXY",
"isSharable": false,
"key": "Test2",
"namespace": null,
"retrievedValue": {
Expand Down Expand Up @@ -2083,6 +2092,7 @@ The list includes all secrets in the scope, including sharable secrets you may n
The details of the listed secrets, including:
* `description`: The description of the secret, if available.
* `isDeleted`: Indicates whether the secret is in a soft-delete state or not.
* `isSharable`: Indicates whether the secret is a [sharable secret](#sharable-secrets) with fine-grained access control.
* `key`: The key of the secret.
* `latestVersion`: The latest version number of the secret.
* `metadata`: Metadata associated with the secret, if any.
Expand Down Expand Up @@ -2121,6 +2131,7 @@ The list includes all secrets in the scope, including sharable secrets you may n
{
"description": "ZXY",
"isDeleted": false,
"isSharable": false,
"key": "test2",
"latestVersion": 1,
"metadata": {
Expand All @@ -2133,6 +2144,7 @@ The list includes all secrets in the scope, including sharable secrets you may n
{
"description": "XYZ",
"isDeleted": false,
"isSharable": false,
"key": "test2",
"latestVersion": 0,
"metadata": {
Expand All @@ -2145,6 +2157,7 @@ The list includes all secrets in the scope, including sharable secrets you may n
{
"description": "CBA",
"isDeleted": false,
"isSharable": false,
"key": "test1",
"latestVersion": 1,
"metadata": {
Expand Down
Loading