npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dynatrace-sdk/client-app-settings

v1.5.0

Published

Retrieve, update and manage app settings.

Downloads

377

Readme

@dynatrace-sdk/client-app-settings

npm License

Retrieve, update and manage app settings.

Installation

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

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';

deleteAppSettingsObjectByObjectId

Deletes the specified settings object

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

Parameters

| Name | Type | Description | | --- | --- | --- | |config.objectId*required|string|The ID of the required settings object. | |config.optimisticLockingVersion*required|string|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. |

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

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

getAppSettingsObjectByObjectId

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

| Name | Type | Description | | --- | --- | --- | |config.objectId*required|string|The ID of the required settings object. |

Returns

Success

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

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

getAppSettingsObjects

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

| Name | Type | Description | | --- | --- | --- | |config.addFields|string|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. Default fields: objectId, version. | |config.pageKey|string|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.pageSize|number|The amount of settings objects in a single response payload. The maximal allowed page size is 500. If not set, 100 is used. | |config.schemaIds|string|A list of comma-separated schema IDs to which the requested objects belong. To load the first page, when the nextPageKey is not set, this parameter is required. |

Returns

Success. Accessible objects returned.

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

const data =
  await appSettingsObjectsClient.getAppSettingsObjects();

getEffectiveAppSettingsValues

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

| Name | Type | Description | | --- | --- | --- | |config.addFields|string|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.pageKey|string|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.pageSize|number|The amount of settings objects in a single response payload. The maximal allowed page size is 500. If not set, 100 is used. | |config.schemaIds|string|A list of comma-separated schema IDs to which the requested objects belong. Only considered on load of the first page, when the nextPageKey is not set. |

Returns

Success

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

const data =
  await appSettingsObjectsClient.getEffectiveAppSettingsValues();

postAppSettingsObject

Creates a new settings object

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

Creates a new settings object.

Parameters

| Name | Type | Description | | --- | --- | --- | |config.body*required|AppSettingsObjectCreate| | |config.validateOnly|boolean|If true, the request runs only validation of the submitted settings objects, without saving them. |

Returns

Created

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

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

putAppSettingsObjectByObjectId

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

| Name | Type | Description | | --- | --- | --- | |config.body*required|AppSettingsObjectUpdate| | |config.objectId*required|string|The ID of the required settings object. | |config.optimisticLockingVersion*required|string|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. |

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

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

resolveEffectivePermissions

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

| Name | Type | | --- | --- | |config.body*required|ResolutionRequest|

Returns

Success

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

const data =
  await appSettingsObjectsClient.resolveEffectivePermissions(
    {
      body: {
        permissions: [{ context: { schemaId: "..." } }],
      },
    },
  );

Types

AppSettingsError

| Name | Type | Description | | --- | --- | --- | |code|number|The HTTP status code | |details|AppSettingsErrorDetails| | |message*required|string|The error message |

AppSettingsErrorDetails

The error details

| Name | Type | Description | | --- | --- | --- | |constraintViolations|Array<ConstraintViolation>|A list of constraint violations | |missingScopes|Array<string>|In case of a 403 - Forbidden response, a list of missing scopes necessary to successfully execute the request |

AppSettingsErrorEnvelope

| Name | Type | | --- | --- | |error*required|AppSettingsError|

AppSettingsModificationInfo

Modification information about the app setting.

| Name | Type | Description | | --- | --- | --- | |createdBy|string|The unique identifier of the user who created the app setting. | |createdTime|Date|Timestamp when the app settings was created in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z') | |lastModifiedBy|string|The unique identifier of the user who performed the most recent modification. | |lastModifiedTime|Date|Timestamp when the app setting was last modified in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z') |

AppSettingsObject

A settings object.

| Name | Type | Description | | --- | --- | --- | |modificationInfo|AppSettingsModificationInfo| | |objectId*required|string|The ID of the settings object. | |resourceContext|ResourceContext| | |schemaId|string|The schema on which the object is based. | |schemaVersion|string|The version of the schema on which the object is based. | |searchSummary|string|A searchable summary string of the setting value. Plain text without Markdown. | |summary|string|A short summary of settings. This can contain Markdown and will be escaped accordingly. | |value|AppSettingsValue| | |version*required|string|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.

| Name | Type | Description | | --- | --- | --- | |insertAfter|string|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*required|string|The schema on which the object is based. | |value*required|AppSettingsValue| |

AppSettingsObjectResponse

The response to a creation request.

| Name | Type | Description | | --- | --- | --- | |objectId*required|string|The ID of the created settings object. | |version*required|string|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.

| Name | Type | Description | | --- | --- | --- | |insertAfter|string|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). | |insertBefore|string|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*required|AppSettingsValue| |

AppSettingsObjectsList

A list of settings objects.

| Name | Type | Description | | --- | --- | --- | |items*required|Array<AppSettingsObject>|A list of settings objects. | |nextPageKey|string|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*required|number|The number of entries per page. | |totalCount*required|number|The total number of entries in the result. |

ConstraintViolation

A list of constraint violations

| Name | Type | | --- | --- | |location|string| |message|string| |parameterLocation|ConstraintViolationParameterLocation| |path|string|

EffectiveAppSettingsValue

An effective settings value.

| Name | Type | Description | | --- | --- | --- | |modificationInfo|AppSettingsModificationInfo| | |schemaId|string|The schema on which the object is based. | |schemaVersion|string|The version of the schema on which the object is based. | |searchSummary|string|A searchable summary string of the setting value. Plain text without Markdown. | |summary|string|A short summary of settings. This can contain Markdown and will be escaped accordingly. | |value|AppSettingsValue| |

EffectiveAppSettingsValuesList

A list of effective settings values.

| Name | Type | Description | | --- | --- | --- | |items*required|Array<EffectiveAppSettingsValue>|A list of effective settings values. | |nextPageKey|string|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*required|number|The number of entries per page. | |totalCount*required|number|The total number of entries in the result. |

EffectivePermission

| Name | Type | | --- | --- | |granted*required|EffectivePermissionGranted| |permission*required|string|

EffectivePermissions

extends Array<EffectivePermission>

| Name | Type | Description | | --- | --- | --- | |[unscopables]*required|Object|Is an object whose properties have the value 'true' when they will be absent when used in a 'with' statement. | |length*required|number|Gets or sets the length of the array. This is a number one higher than the highest index in the array. |

Modifications

The additional modification details for this settings object.

| Name | Type | Description | | --- | --- | --- | |first|boolean|If non-moveable settings object is in the first group of non-moveable settings, or in the last (start or end of list). | |modifiablePaths*required|Array<string>|Property paths which are modifiable, regardless if the write operation is allowed. | |movable|boolean|If settings object can be moved/reordered. Only applicable for ordered list schema. | |nonModifiablePaths*required|Array<string>|Property paths which are not modifiable, even if the write operation is allowed. |

PermissionContext

| Name | Type | | --- | --- | |schemaId*required|string|

ResolutionRequest

| Name | Type | | --- | --- | |permissions*required|Array<SinglePermissionRequest>|

ResourceContext

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

| Name | Type | Description | | --- | --- | --- | |modifications*required|Modifications| | |operations*required|Array<ResourceContextOperationsItem>|The allowed operations on this settings object. |

SinglePermissionRequest

optional generic set of context data

| Name | Type | | --- | --- | |context|PermissionContext| |permission*required|SinglePermissionRequestPermission|

Enums

ConstraintViolationParameterLocation

Enum keys

Header | Path | PayloadBody | Query

EffectivePermissionGranted

Enum keys

Condition | False | True

ResourceContextOperationsItem

Enum keys

Delete | Read | Write

SinglePermissionRequestPermission

Enum keys

AppSettingsObjectsRead | AppSettingsObjectsWrite