@dynatrace-sdk/client-app-engine-registry
Advanced tools
Comparing version 1.2.4 to 1.2.6
@@ -5,2 +5,19 @@ # AppEngine - Registry | ||
## 1.2.6 | ||
### Patch Changes | ||
- Fix transformation of null values for nullable properties | ||
## 1.2.5 | ||
### Patch Changes | ||
- Update documentation | ||
- Fix transformation of null and Date values | ||
- Update package description | ||
- Updated dependencies | ||
- @dynatrace-sdk/http-client@1.0.6 | ||
## 1.2.4 | ||
@@ -7,0 +24,0 @@ |
--- | ||
title: AppEngine - Registry | ||
description: The Registry is mainly responsible for | ||
* installing / updating / storing apps | ||
* uninstalling / removing apps | ||
* getting apps. | ||
description: Manage Dynatrace AppEngine apps. | ||
--- | ||
@@ -38,3 +35,3 @@ | ||
<div class="col" style={{textAlign: 'right'}}> | ||
<a href="https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-registry/v/1.2.4">v1.2.4</a> | ||
<a href="https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-registry/v/1.2.6">v1.2.6</a> | ||
</div> | ||
@@ -56,3 +53,3 @@ </div> | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistryAppsClient.getApp(config): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="#appinfo">AppInfo</a>></strong> | ||
<strong>appEngineRegistryAppsClient.getApp(config): Promise<<a href="#appinfo">AppInfo</a>></strong> | ||
@@ -89,3 +86,2 @@ <div class="padding-left--md"> | ||
id: "...", | ||
addFields: "...", | ||
}); | ||
@@ -101,3 +97,3 @@ ``` | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistryAppsClient.getApps(config): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="#appinfolist">AppInfoList</a>></strong> | ||
<strong>appEngineRegistryAppsClient.getApps(config): Promise<<a href="#appinfolist">AppInfoList</a>></strong> | ||
@@ -131,5 +127,3 @@ <div class="padding-left--md"> | ||
const data = await appEngineRegistryAppsClient.getApps({ | ||
addFields: "...", | ||
}); | ||
const data = await appEngineRegistryAppsClient.getApps(); | ||
``` | ||
@@ -144,3 +138,3 @@ | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistryAppsClient.installApp(config): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="#appstub">AppStub</a>></strong> | ||
<strong>appEngineRegistryAppsClient.installApp(config): Promise<<a href="#appstub">AppStub</a>></strong> | ||
@@ -161,5 +155,5 @@ <div class="padding-left--md"> | ||
| Name | Type | | ||
| -------------------------------- | ------------------------ | | ||
| config.body<sup>\*required</sup> | <a href="#blob">Blob</a> | | ||
| Name | Type | | ||
| -------------------------------- | ---- | | ||
| config.body<sup>\*required</sup> | Blob | | ||
@@ -180,3 +174,3 @@ #### Returns | ||
const data = await appEngineRegistryAppsClient.installApp({ | ||
body: {} as Binary, | ||
body: new Blob(), | ||
}); | ||
@@ -192,3 +186,3 @@ ``` | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistryAppsClient.searchActions(config): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="#searchappactionlist">SearchAppActionList</a>></strong> | ||
<strong>appEngineRegistryAppsClient.searchActions(config): Promise<<a href="#searchappactionlist">SearchAppActionList</a>></strong> | ||
@@ -222,5 +216,3 @@ <div class="padding-left--md"> | ||
const data = await appEngineRegistryAppsClient.searchActions({ | ||
query: "...", | ||
}); | ||
const data = await appEngineRegistryAppsClient.searchActions(); | ||
``` | ||
@@ -235,3 +227,3 @@ | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistryAppsClient.uninstallApp(config): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><void></strong> | ||
<strong>appEngineRegistryAppsClient.uninstallApp(config): Promise<void></strong> | ||
@@ -279,3 +271,3 @@ <div class="padding-left--md"> | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistrySchemaManifestClient.getAppManifestSchema(abortSignal?): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any">any</a>></strong> | ||
<strong>appEngineRegistrySchemaManifestClient.getAppManifestSchema(abortSignal?): Promise<<a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any">any</a>></strong> | ||
@@ -313,3 +305,3 @@ <div class="padding-left--md"> | ||
<div class="padding-bottom--md"> | ||
<strong>appEngineRegistrySchemaManifestClient.getDefaultCspProperties(abortSignal?): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a><<a href="#appdefaultcsp">AppDefaultCsp</a>></strong> | ||
<strong>appEngineRegistrySchemaManifestClient.getDefaultCspProperties(abortSignal?): Promise<<a href="#appdefaultcsp">AppDefaultCsp</a>></strong> | ||
@@ -444,8 +436,8 @@ <div class="padding-left--md"> | ||
| Name | Type | Description | | ||
| -------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------- | | ||
| constraintViolations | Array<<a href="#constraintviolation">ConstraintViolation</a>> | A list of constraint violations | | ||
| errorCode | <a href="#maxnumberofinstalledcustomappsexceeded">MaxNumberOfInstalledCustomAppsExceeded</a> | | | ||
| errorCodeProperties | <a href="#errordetailserrorcodeproperties">ErrorDetailsErrorCodeProperties</a> | | | ||
| errorRef | <a href="https://developer.mozilla.org/en-US/docs/Glossary/String">string</a> | Generated unique value for 5xx errors. | | ||
| Name | Type | Description | | ||
| -------------------- | ------------------------------------------------------------------------------ | -------------------------------------- | | ||
| constraintViolations | Array<<a href="#constraintviolation">ConstraintViolation</a>> | A list of constraint violations | | ||
| errorCode | MaxNumberOfInstalledCustomAppsExceeded | | | ||
| errorCodeProperties | <a href="#errordetailserrorcodeproperties">ErrorDetailsErrorCodeProperties</a> | | | ||
| errorRef | <a href="https://developer.mozilla.org/en-US/docs/Glossary/String">string</a> | Generated unique value for 5xx errors. | | ||
@@ -483,5 +475,5 @@ ### ErrorDetailsErrorCodeProperties | ||
| Name | Type | Description | | ||
| ---------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| operations | Array<<a href="#resourcecontextoperationsitem">ResourceContextOperationsItem</a>> | <p>Operations that are allowed on the app depending on the user's permissions.</p> <ul> <li> <p><code>run</code>: user is allowed to run the app.</p> </li> <li> <p><code>update</code>: user is allowed to update the app.</p> </li> <li> <p><code>uninstall</code>: user is allowed to uninstall the app.</p> </li> </ul> | | ||
| Name | Type | Description | | ||
| ---------- | ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| operations | Array<ResourceContextOperationsItem> | <p>Operations that are allowed on the app depending on the user's permissions.</p> <ul> <li> <p><code>run</code>: user is allowed to run the app.</p> </li> <li> <p><code>update</code>: user is allowed to update the app.</p> </li> <li> <p><code>uninstall</code>: user is allowed to uninstall the app.</p> </li> </ul> | | ||
@@ -492,8 +484,8 @@ ### ResourceStatus | ||
| Name | Type | Description | | ||
| --------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------- | | ||
| operationStateBeforeError | <a href="#resourcestatusoperationstatebeforeerror">ResourceStatusOperationStateBeforeError</a> | | | ||
| pendingOperation | <a href="#resourcestatuspendingoperation">ResourceStatusPendingOperation</a> | | | ||
| status<sup>\*required</sup> | <a href="#resourcestatusstatus">ResourceStatusStatus</a> | | | ||
| subResourceStatuses | Array<<a href="#subresourcestatus">SubResourceStatus</a>> | The statuses of the app's sub resources. | | ||
| Name | Type | Description | | ||
| --------------------------- | --------------------------------------------------------------- | ---------------------------------------- | | ||
| operationStateBeforeError | ResourceStatusOperationStateBeforeError | | | ||
| pendingOperation | ResourceStatusPendingOperation | | | ||
| status<sup>\*required</sup> | ResourceStatusStatus | | | ||
| subResourceStatuses | Array<<a href="#subresourcestatus">SubResourceStatus</a>> | The statuses of the app's sub resources. | | ||
@@ -541,7 +533,7 @@ ### SearchAppAction | ||
| Name | Type | | ||
| ------------------------------------ | -------------------------------------------------------------------------------- | | ||
| error | <a href="#subresourceerror">SubResourceError</a> | | ||
| status<sup>\*required</sup> | <a href="#subresourcestatusstatus">SubResourceStatusStatus</a> | | ||
| subResourceType<sup>\*required</sup> | <a href="#subresourcestatussubresourcetype">SubResourceStatusSubResourceType</a> | | ||
| Name | Type | | ||
| ------------------------------------ | ------------------------------------------------ | | ||
| error | <a href="#subresourceerror">SubResourceError</a> | | ||
| status<sup>\*required</sup> | SubResourceStatusStatus | | ||
| subResourceType<sup>\*required</sup> | SubResourceStatusSubResourceType | | ||
@@ -548,0 +540,0 @@ ## Enums |
{ | ||
"dynagen": { | ||
"version": "0.10.10", | ||
"version": "0.12.3", | ||
"generatedAt": "", | ||
"template": { | ||
"name": "@dynatrace-sdk/template-typescript-client", | ||
"version": "0.17.6" | ||
"version": "0.17.10" | ||
} | ||
@@ -9,0 +9,0 @@ }, |
{ | ||
"name": "@dynatrace-sdk/client-app-engine-registry", | ||
"version": "1.2.4", | ||
"version": "1.2.6", | ||
"description": "Manage Dynatrace AppEngine apps.", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@dynatrace-sdk/http-client": "^1.0.5" | ||
"@dynatrace-sdk/http-client": "^1.0.6" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./cjs/index.js", | ||
@@ -9,0 +10,0 @@ "module": "./esm/index.js", |
# @dynatrace-sdk/client-app-engine-registry | ||
[![npm](https://img.shields.io/badge/npm-v1.2.4-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-registry/v/1.2.4) | ||
[![npm](https://img.shields.io/badge/npm-v1.2.6-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-registry/v/1.2.6) | ||
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | ||
@@ -5,0 +5,0 @@ |
@@ -24,5 +24,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* | ||
* const data = await appEngineRegistryAppsClient.getApps({ | ||
* addFields: "...", | ||
* }); | ||
* const data = await appEngineRegistryAppsClient.getApps(); | ||
*/ | ||
@@ -55,3 +53,3 @@ getApps(config?: { | ||
* const data = await appEngineRegistryAppsClient.installApp({ | ||
* body: {} as Binary, | ||
* body: new Blob(), | ||
* }); | ||
@@ -74,5 +72,3 @@ */ | ||
* const data = | ||
* await appEngineRegistryAppsClient.searchActions({ | ||
* query: "...", | ||
* }); | ||
* await appEngineRegistryAppsClient.searchActions(); | ||
*/ | ||
@@ -101,3 +97,2 @@ searchActions(config?: { | ||
* id: "...", | ||
* addFields: "...", | ||
* }); | ||
@@ -128,3 +123,3 @@ */ | ||
* const data = await appEngineRegistryAppsClient.uninstallApp( | ||
* { id: "..." } | ||
* { id: "..." }, | ||
* ); | ||
@@ -131,0 +126,0 @@ */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
185665
3840