Socket
Book a DemoInstallSign in
Socket

@dynatrace-sdk/client-app-settings-v2

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynatrace-sdk/client-app-settings-v2

[![npm](https://img.shields.io/badge/npm-v1.1.3-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-app-settings-v2/v/1.1.3) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

1.1.3
latest
npmnpm
Version published
Weekly downloads
1.4K
393.47%
Maintainers
3
Weekly downloads
 
Created
Source

@dynatrace-sdk/client-app-settings-v2

npm License

Retrieve, update and manage app settings.

Installation

npm install @dynatrace-sdk/client-app-settings-v2

Getting help

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

API reference

Full API reference for the latest version of the SDK is also available at the Dynatrace Developer.

appSettingsObjectsClient

import { appSettingsObjectsClient } from '@dynatrace-sdk/client-app-settings-v2';

deleteAppSettingsAllUsersPermissionByObjectId

appSettingsObjectsClient.deleteAppSettingsAllUsersPermissionByObjectId(config): Promise<void>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Remove the permissions for an existing all-users accessor on this object, anyone with read/write permissions is allowed to delete permissions

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
void204success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId or the all-users accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.deleteAppSettingsAllUsersPermissionByObjectId(
    { objectId: "..." },
  );

deleteAppSettingsObjectByObjectId

appSettingsObjectsClient.deleteAppSettingsObjectByObjectId(config): Promise<void>

Deletes the specified settings object

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object
config.optimisticLockingVersion*requiredstring

The version of the object for optimistic locking. You can use it to detect simultaneous modifications by different users.

It is generated upon retrieval (GET requests). If set on update (PUT request) or deletion, the update/deletion will be allowed only if there wasn't any change between the retrieval and the update.

Returns

Return typeStatus codeDescription
void204Success. Response doesn't have a body.

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. | Failed. The requested resource doesn't exist.
ConflictingResourceFailed. Conflicting resource.
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.deleteAppSettingsObjectByObjectId(
    { objectId: "...", optimisticLockingVersion: "..." },
  );

deleteAppSettingsPermissionByObjectIdAndAccessorId

appSettingsObjectsClient.deleteAppSettingsPermissionByObjectIdAndAccessorId(config): Promise<void>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Remove the permissions for an existing accessor on this object, anyone with read/write permissions is allowed to delete permissions

Parameters

NameTypeDescription
config.accessorId*requiredstringThe user uuid or group uuid of the accessor, depending on the type
config.accessorType*required"user" | "group"The type of the accessor
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
void204success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId or the accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.deleteAppSettingsPermissionByObjectIdAndAccessorId(
    {
      objectId: "...",
      accessorType: "user",
      accessorId: "...",
    },
  );

getAppSettingsAllUsersPermissionByObjectId

appSettingsObjectsClient.getAppSettingsAllUsersPermissionByObjectId(config): Promise<AppSettingsAccessorPermissions>

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Get current permissions of the all-users accessor on this object

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
AppSettingsAccessorPermissions200Success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId or the all-users accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getAppSettingsAllUsersPermissionByObjectId(
    { objectId: "..." },
  );

getAppSettingsObjectByObjectId

appSettingsObjectsClient.getAppSettingsObjectByObjectId(config): Promise<AppSettingsObject>

Gets the specified settings object

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Gets the specified settings object. Properties of type secret will be included in plain text if the call originates from a serverless function of your app; they will have irreversibly masked values otherwise. This protects these secrets from leaking to users of your app or other third parties.

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
AppSettingsObject200Success

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. | No object available for the given objectId
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getAppSettingsObjectByObjectId(
    { objectId: "..." },
  );

getAppSettingsObjects

appSettingsObjectsClient.getAppSettingsObjects(config): Promise<AppSettingsObjectsList>

Lists persisted settings objects

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Lists persisted settings objects for selected schemas.

If nothing is persisted or if all persisted settings objects are not accessible due to missing permissions, no items will be returned.

To query the effective values (including schema defaults) please see getEffectiveAppSettingsValues.

Properties of type secret will be included in plain text if the call originates from a serverless function of your app; they will have irreversibly masked values otherwise. This protects these secrets from leaking to users of your app or other third parties.

Parameters

NameTypeDescription
config.addFieldsstring

A list of fields to be included to the response. The provided set of fields extends the default set.

Specify the required top-level fields, separated by commas (for example, summary,value).

Supported fields: objectId, version, summary, searchSummary, schemaId, schemaVersion, modificationInfo, resourceContext, value, owner.

Default fields: objectId, version.

config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.filterstring

The filter parameter, as explained here.

Filtering is supported on the following fields:

  • modificationInfo.createdBy
  • modificationInfo.createdTime
  • modificationInfo.lastModifiedBy
  • modificationInfo.lastModifiedTime
  • value with properties and sub-properties separated by dot (for example, value.owningApp = 'Notebooks')
  • owner.type
  • owner.id

If this parameter is omitted, all settings objects will be returned. The maximum nesting depth (via parentheses) is 5. The maximum expression length is 1024 characters.

Note that only fields included to the response via add-fields can be used for filtering.

config.pageKeystring

The cursor for the next page of results. You can find it in the nextPageKey field of the previous response.

The first page is always returned if you don't specify the page-key query parameter.

When the page-key is set to obtain subsequent pages, you must omit all other query parameters.

config.pageSizenumber

The amount of settings objects in a single response payload.

If set to 0, all available settings objects will be included in the response (not allowed if filter or sort parameter is referencing value).

The maximal allowed page size is 500.

If not set, 100 is used.

config.schemaIdstring

Schema ID to which the requested objects belong.

To load the first page, when the nextPageKey is not set, this parameter is required.

config.sortstring

The sort parameter, as explained here.

Sorting is supported on the following fields:

  • modificationInfo.createdBy
  • modificationInfo.createdTime
  • modificationInfo.lastModifiedBy
  • modificationInfo.lastModifiedTime
  • value with properties and sub-properties separated by dot (for example, value.owningApp)

Note that only fields included to the response via add-fields can be used for sorting.

Returns

Return typeStatus codeDescription
AppSettingsObjectsList200Success. Uses chunked encoding.

Even if a response returns a successful response code it is possible that the result is incomplete due to an internal error.

In this case an 'error' property with information about the problem is added. The caller may decide to work with the incomplete result or do a retry of the operation.|

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. | Failed. The specified schema was not found.
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getAppSettingsObjects();

getAppSettingsPermissionByObjectIdAndAccessorId

appSettingsObjectsClient.getAppSettingsPermissionByObjectIdAndAccessorId(config): Promise<AppSettingsAccessorPermissions>

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Get current permissions of the accessor on this object

Parameters

NameTypeDescription
config.accessorId*requiredstringThe user uuid or group uuid of the accessor, depending on the type
config.accessorType*required"user" | "group"The type of the accessor
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
AppSettingsAccessorPermissions200Success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId or the accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getAppSettingsPermissionByObjectIdAndAccessorId(
    {
      objectId: "...",
      accessorType: "user",
      accessorId: "...",
    },
  );

getAppSettingsPermissionsByObjectId

appSettingsObjectsClient.getAppSettingsPermissionsByObjectId(config): Promise<AppSettingsAccessorPermissionsList>

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Get current permissions on this object

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
AppSettingsAccessorPermissionsList200Success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getAppSettingsPermissionsByObjectId(
    { objectId: "..." },
  );

getEffectiveAppSettingsValues

appSettingsObjectsClient.getEffectiveAppSettingsValues(config): Promise<EffectiveAppSettingsValuesList>

Lists effective settings values

Required scope: app-settings:objects:read Required permission: app-settings:objects:read

Lists effective settings values for selected schemas. If no object is persisted for a schema with "multiObject": false, the default value as defined in the schema will be returned.

Properties of type secret will be included in plain text if the call originates from a serverless function of your app; they will have irreversibly masked values otherwise. This protects these secrets from leaking to users of your app or other third parties.

Parameters

NameTypeDescription
config.addFieldsstring

A list of fields to be included to the response. The provided set of fields extends the default set.

Specify the required top-level fields, separated by commas (for example, summary,schemaId).

Supported fields: summary, searchSummary, schemaId, schemaVersion, modificationInfo, value.

Default fields: value.

config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.pageKeystring

The cursor for the next page of results. You can find it in the nextPageKey field of the previous response.

The first page is always returned if you don't specify the page-key query parameter.

When the page-key is set to obtain subsequent pages, you must omit all other query parameters.

config.pageSizenumber

The amount of settings objects in a single response payload.

If set to 0, all available settings objects will be included in the response.

The maximal allowed page size is 500.

If not set, 100 is used.

config.schemaIdstring

Schema ID to which the requested objects belong.

Only considered on load of the first page, when the nextPageKey is not set.

Returns

Return typeStatus codeDescription
EffectiveAppSettingsValuesList200Success. Uses chunked encoding.

Even if a response returns a successful response code it is possible that the result is incomplete due to an internal error.

In this case an 'error' property with information about the problem is added. The caller may decide to work with the incomplete result or do a retry of the operation.|

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. The specified schema is not found.
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.getEffectiveAppSettingsValues();

postAppSettingsObject

appSettingsObjectsClient.postAppSettingsObject(config): Promise<void | AppSettingsObjectResponse>

Creates a new settings object

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Creates a new settings object.

Parameters

NameTypeDescription
config.body*requiredAppSettingsObjectCreate
config.validateOnlybooleanIf true, the request runs only validation of the submitted settings objects, without saving them.

Returns

Return typeStatus codeDescription
void200Success. No validation errors.
AppSettingsObjectResponse201Created

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. | Failed. The requested resource doesn't exist.
ConflictingResourceFailed. Conflicting resource.
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.postAppSettingsObject({
    body: { schemaId: "jira-connection", value: {} },
  });

postAppSettingsOwnershipByObjectId

appSettingsObjectsClient.postAppSettingsOwnershipByObjectId(config): Promise<void>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Transfer ownership of the object, only the owner or the main admin is allowed to transfer the ownership (IAM permission needed).

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.body*requiredAppSettingsTransferOwnershipRequest
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
void204Success

Throws

Error TypeError Message
ErrorResponseErrorNo object available for the given objectId
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.postAppSettingsOwnershipByObjectId(
    {
      objectId: "...",
      body: { newOwner: { type: "user" } },
    },
  );

postAppSettingsPermissionByObjectId

appSettingsObjectsClient.postAppSettingsPermissionByObjectId(config): Promise<AppSettingsAccessorPermissions>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Add the permissions for a single accessor on this object, anyone with read/write permissions is allowed to add more permissions

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.body*requiredAppSettingsAccessorPermissions
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
AppSettingsAccessorPermissions201Success

Throws

Error TypeError Message
ErrorResponseErrorif accessor id already exists | No object available for the given objectId
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.postAppSettingsPermissionByObjectId(
    {
      objectId: "...",
      body: { accessor: { type: "user" }, permissions: {} },
    },
  );

putAppSettingsAllUsersPermissionByObjectId

appSettingsObjectsClient.putAppSettingsAllUsersPermissionByObjectId(config): Promise<void>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Update the permissions for an existing all-users accessor on this object, anyone with read/write permissions is allowed to update permissions

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.body*requiredAppSettingsUpdatePermissionsRequest
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
void200success

Throws

Error TypeError Message
ErrorResponseErrorif permission list is empty, contains unsupported entries or unsupported combinations of entries | No object available for the given objectId or the all-users accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.putAppSettingsAllUsersPermissionByObjectId(
    { objectId: "...", body: { permissions: {} } },
  );

putAppSettingsObjectByObjectId

appSettingsObjectsClient.putAppSettingsObjectByObjectId(config): Promise<AppSettingsUpdateResponse>

Updates an existing settings object

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Updates an existing settings object with new values. To update a property of the secret type you need to pass the new value unmasked. To keep the current value, send the current masked secret. You can obtain it via GET an object endpoint.

Some schemas don't allow passing of the masked secret. In that case you need to send the unmasked secret with every update of the object.

Parameters

NameTypeDescription
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.body*requiredAppSettingsObjectUpdate
config.objectId*requiredstringThe ID of the required settings object
config.optimisticLockingVersion*requiredstring

The version of the object for optimistic locking. You can use it to detect simultaneous modifications by different users.

It is generated upon retrieval (GET requests). If set on update (PUT request) or deletion, the update/deletion will be allowed only if there wasn't any change between the retrieval and the update.

Returns

Return typeStatus codeDescription
AppSettingsUpdateResponse200Success

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. | Failed. The requested resource doesn't exist.
ConflictingResourceFailed. Conflicting resource.
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.putAppSettingsObjectByObjectId(
    {
      objectId: "...",
      optimisticLockingVersion: "...",
      body: { value: {} },
    },
  );

putAppSettingsPermissionByObjectIdAndAccessorId

appSettingsObjectsClient.putAppSettingsPermissionByObjectIdAndAccessorId(config): Promise<void>

Required scope: app-settings:objects:write Required permission: app-settings:objects:write

Update the permissions for an existing accessor on this object, anyone with read/write permissions is allowed to update permissions

Parameters

NameTypeDescription
config.accessorId*requiredstringThe user uuid or group uuid of the accessor, depending on the type
config.accessorType*required"user" | "group"The type of the accessor
config.adminAccessbooleanIf set to true and user has app-settings:objects:admin permission, the endpoint will act as if the user is the owner of all objects
config.body*requiredAppSettingsUpdatePermissionsRequest
config.objectId*requiredstringThe ID of the required settings object

Returns

Return typeStatus codeDescription
void200success

Throws

Error TypeError Message
ErrorResponseErrorif permission list is empty, contains unsupported entries or unsupported combinations of entries | No object available for the given objectId or the accessor doesn't have any permissions on this object
TooManyRequestsFailed. Too many requests.
ServiceUnavailableFailed. Service unavailable.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.putAppSettingsPermissionByObjectIdAndAccessorId(
    {
      objectId: "...",
      accessorType: "user",
      accessorId: "...",
      body: { permissions: {} },
    },
  );

resolveEffectivePermissions

appSettingsObjectsClient.resolveEffectivePermissions(config): Promise<EffectivePermissions>

Get the effective settings permissions of the calling user in the environment

Required scope: app-settings:objects:read or app-settings:objects:write Required permission: app-settings:objects:read or app-settings:objects:write

Parameters

NameType
config.body*requiredResolutionRequest

Throws

Error TypeError Message
ErrorResponseErrorFailed. The input is invalid. | Failed. Forbidden. No access to any schema.
GeneralErrorError.
Code example
import { appSettingsObjectsClient } from "@dynatrace-sdk/client-app-settings-v2";

const data =
  await appSettingsObjectsClient.resolveEffectivePermissions(
    {
      body: {
        permissions: [
          {
            permission: "app-settings:objects:read",
            context: { schemaId: "..." },
          },
        ],
      },
    },
  );

Types

AppSettingsAccessorPermissions

NameType
accessor*requiredIdentity
permissions*requiredAppSettingsPermissionsList

AppSettingsAccessorPermissionsList

NameType
accessors*requiredArray<AppSettingsAccessorPermissions>

AppSettingsObject

A settings object.

NameTypeDescription
modificationInfoModificationInfoModification information about the setting.
objectId*requiredstringThe ID of the settings object.
ownerIdentity
resourceContextResourceContextThe resource context, which contains additional permission information about the object.
schemaIdstringThe schema on which the object is based.
schemaVersionstringThe version of the schema on which the object is based.
searchSummarystringA searchable summary string of the setting value. Plain text without Markdown.
summarystringA short summary of settings. This can contain Markdown and will be escaped accordingly.
valueAppSettingsValueRaw

The value of the setting.

It defines the actual values of settings' parameters.

The actual content depends on the object's schema.

version*requiredstring

The version of the object for optimistic locking. You can use it to detect simultaneous modifications by different users.

It is generated upon retrieval (GET requests). If set on update (PUT request) or deletion, the update/deletion will be allowed only if there wasn't any change between the retrieval and the update.

AppSettingsObjectCreate

Configuration of a new settings object.

NameTypeDescription
insertAfterstring

The position of the new object. The new object will be added after the specified one.

If null, the new object will be placed in the last position.

If set to empty string, the new object will be placed in the first position.

Only applicable for objects based on schemas with ordered objects (schema's ordered parameter is set to true).

schemaId*requiredstringThe schema on which the object is based.
value*requiredAppSettingsValue

The value of the setting.

It defines the actual values of settings' parameters.

The actual content depends on the object's schema.

AppSettingsObjectResponse

The response to a creation request.

NameTypeDescription
objectId*requiredstringThe ID of the created settings object.
version*requiredstring

The version of the object for optimistic locking. You can use it to detect simultaneous modifications by different users.

It is generated upon retrieval (GET requests). If set on update (PUT request) or deletion, the update/deletion will be allowed only if there wasn't any change between the retrieval and the update.

AppSettingsObjectUpdate

An update of a settings object.

NameTypeDescription
insertAfterstring

The position of the updated object. The new object will be moved behind the specified one.

insertAfter and insertBefore are evaluated together and only one of both can be set.

If null and insertBefore 'null', the existing object keeps the current position.

If set to empty string, the updated object will be placed in the first position.

Only applicable for objects based on schemas with ordered objects (schema's ordered parameter is set to true).

insertBeforestring

The position of the updated object. The new object will be moved in front of the specified one.

insertAfter and insertBefore are evaluated together and only one of both can be set.

If null and insertAfter 'null', the existing object keeps the current position.

If set to empty string, the updated object will be placed in the last position.

Only applicable for objects based on schemas with ordered objects (schema's ordered parameter is set to true).

value*requiredAppSettingsValue

The value of the setting.

It defines the actual values of settings' parameters.

The actual content depends on the object's schema.

AppSettingsObjectsList

A list of settings objects.

NameTypeDescription
errorErrorIncompleteError object for an incomplete response
items*requiredArray<AppSettingsObject>A list of settings objects.
nextPageKeystring

The cursor for the next page of results. Has the value of null on the last page.

Use it in the nextPageKey query parameter to obtain subsequent pages of the result.

pageSize*requirednumberThe number of entries per page.
totalCount*requirednumberThe total number of entries in the result.

AppSettingsPermissionsList

type: Array<"r" | "w">

AppSettingsTransferOwnershipRequest

NameType
newOwnerIdentity

AppSettingsUpdatePermissionsRequest

NameType
permissions*requiredAppSettingsPermissionsList

AppSettingsUpdateResponse

The response to an update request.

NameTypeDescription
version*requiredstring

The version of the object for optimistic locking. You can use it to detect simultaneous modifications by different users.

It is generated upon retrieval (GET requests). If set on update (PUT request) or deletion, the update/deletion will be allowed only if there wasn't any change between the retrieval and the update.

ConstraintViolation

Contains information about a constraint violation caused by invalid input.

NameTypeDescription
message*requiredstringThe constraint violation description message
pathstringThe path of the parameter that caused the constraint violation

EffectiveAppSettingsValue

An effective settings value.

NameTypeDescription
modificationInfoModificationInfoModification information about the setting.
schemaIdstringThe schema on which the object is based.
schemaVersionstringThe version of the schema on which the object is based.
searchSummarystringA searchable summary string of the setting value. Plain text without Markdown.
summarystringA short summary of settings. This can contain Markdown and will be escaped accordingly.
valueAppSettingsValueRaw

The value of the setting.

It defines the actual values of settings' parameters.

The actual content depends on the object's schema.

EffectiveAppSettingsValuesList

A list of effective settings values.

NameTypeDescription
errorErrorIncompleteError object for an incomplete response
items*requiredArray<EffectiveAppSettingsValue>A list of effective settings values.
nextPageKeystring

The cursor for the next page of results. Has the value of null on the last page.

Use it in the nextPageKey query parameter to obtain subsequent pages of the result.

pageSize*requirednumberThe number of entries per page.
totalCount*requirednumberThe total number of entries in the result.

EffectivePermission

NameType
contextPermissionContext
granted*required"true" | "false" | "condition"
permission*requiredstring

EffectivePermissions

type: Array<EffectivePermission>

Error

Standard error response

NameTypeDescription
code*requirednumberThe error code (HTTP response)
detailsErrorDetailsOptional details of the error
message*requiredstringThe error code (HTTP response)
retryAfterSecondsnumberNumber of seconds a request can be retried after a 'too many requests' error response.

ErrorDetails

Optional details of the error

NameTypeDescription
constraintViolationsArray<ConstraintViolation>A list of constraint violations of input parameters (path, query, request body)
errorRefstringreference to the error occurrence in the internal self-monitoring, logging, etc.
missingScopesArray<string>In case of a 403 - Forbidden response, a list of missing scopes necessary to successfully execute the request

ErrorIncomplete

Error object for an incomplete response

NameTypeDescription
code*requirednumberThe error code (HTTP response)
detailsErrorDetailsOptional details of the error
message*requiredstringThe error message
retryAfterSecondsnumberNumber of seconds a request can be retried after a 'too many requests' error response.

ErrorResponse

NameTypeDescription
error*requiredErrorStandard error response

Identity

NameTypeDescription
idstringuser id or user group id if type is 'user' or 'group', missing if type is 'all-users'
type*required"user" | "group" | "all-users"

ModificationInfo

Modification information about the setting.

NameTypeDescription
createdBystringThe unique identifier of the user who created the setting.
createdTimeDateTimestamp when the setting was created in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z')
lastModifiedBystringThe unique identifier of the user who performed the most recent modification.
lastModifiedTimeDateTimestamp when the setting was last modified in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z')

Modifications

The additional modification details for this settings object.

NameTypeDescription
firstbooleanIf non-moveable settings object is in the first group of non-moveable settings, or in the last (start or end of list).
modifiablePaths*requiredArray<string>Property paths which are modifiable, regardless if the write operation is allowed.
movablebooleanIf settings object can be moved/reordered. Only applicable for ordered list schema.
nonModifiablePaths*requiredArray<string>Property paths which are not modifiable, even if the write operation is allowed.

PermissionContext

NameType
schemaId*requiredstring

ResolutionRequest

NameType
permissions*requiredArray<SinglePermissionRequest>

ResourceContext

The resource context, which contains additional permission information about the object.

NameTypeDescription
modifications*requiredModificationsThe additional modification details for this settings object.
operations*requiredArray<"read" | "write" | "delete">The allowed operations on this settings object.

SinglePermissionRequest

optional generic set of context data

NameType
contextPermissionContext
permission*required"app-settings:objects:read" | "app-settings:objects:write" | "app-settings:objects:admin"

Enums

AppSettingsPermissionsListItem

Enum keys

R | W

EffectivePermissionGranted

Enum keys

Condition | False | True

GetAppSettingsPermissionByObjectIdAndAccessorIdPathAccessorType

Enum keys

Group | User

IdentityType

Enum keys

AllUsers | Group | User

ResourceContextOperationsItem

Enum keys

Delete | Read | Write

SinglePermissionRequestPermission

Enum keys

AppSettingsObjectsAdmin | AppSettingsObjectsRead | AppSettingsObjectsWrite

FAQs

Package last updated on 15 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.