@dynatrace-sdk/client-classic-environment-v2 1.8.0 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/docs/DOCS.md +351 -347
- package/dynatrace-metadata.json +2 -2
- package/package.json +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/api-token-additional-metadata.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/api-token-additional-metadata.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/audit-log-entry-patch.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/audit-log-entry-patch.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/cloud-event.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/cloud-event.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/entity-properties.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/entity-properties.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/enum-value-value.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/enum-value-value.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/extension-monitoring-configuration-value.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/extension-monitoring-configuration-value.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/ingest-body.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/ingest-body.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/json-node.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/json-node.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/log-message-json.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/log-message-json.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/log-message-plain.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/log-message-plain.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/object-node.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/object-node.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/precondition-expected-value.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/precondition-expected-value.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/precondition.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/precondition.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/property-definition-default.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/property-definition-default.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/settings-value.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/settings-value.transformation.d.ts +1 -1
- package/types/packages/client/classic-environment-v2/src/lib/models/synthetic-on-demand-execution-request-monitor-customized-script.d.ts +3 -3
- package/types/packages/client/classic-environment-v2/src/lib/models/synthetic-on-demand-execution-request-monitor-customized-script.transformation.d.ts +1 -1
package/dynatrace-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
* A `dashboardId` property for dashboard sharing tokens.
|
|
5
5
|
* A `reportId` property for report sharing tokens
|
|
6
|
-
* This is just an alias for a type any
|
|
7
|
-
* @typedef {any} ApiTokenAdditionalMetadata
|
|
6
|
+
* This is just an alias for a type Record<string, any>.
|
|
7
|
+
* @typedef {Record<string, any>} ApiTokenAdditionalMetadata
|
|
8
8
|
*/
|
|
9
|
-
export declare type ApiTokenAdditionalMetadata = any
|
|
9
|
+
export declare type ApiTokenAdditionalMetadata = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ApiTokenAdditionalMetadata } from './api-token-additional-metadata';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): ApiTokenAdditionalMetadata;
|
|
4
4
|
export declare function toJson($model: ApiTokenAdditionalMetadata): AsJson;
|
package/types/packages/client/classic-environment-v2/src/lib/models/audit-log-entry-patch.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* The patch of the recorded operation as the JSON representation.
|
|
3
3
|
|
|
4
4
|
The format is an enhanced RFC 6902. The patch also carries the previous value in the **oldValue** field.
|
|
5
|
-
* This is just an alias for a type any
|
|
6
|
-
* @typedef {any} AuditLogEntryPatch
|
|
5
|
+
* This is just an alias for a type Record<string, any>.
|
|
6
|
+
* @typedef {Record<string, any>} AuditLogEntryPatch
|
|
7
7
|
*/
|
|
8
|
-
export declare type AuditLogEntryPatch = any
|
|
8
|
+
export declare type AuditLogEntryPatch = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AuditLogEntryPatch } from './audit-log-entry-patch';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): AuditLogEntryPatch;
|
|
4
4
|
export declare function toJson($model: AuditLogEntryPatch): AsJson;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CloudEvents is a [specification](https://github.com/cloudevents/spec/blob/v1.0/spec.json) for describing event data in common formats to provide interoperability across services, platforms and systems.
|
|
3
3
|
*/
|
|
4
4
|
export interface CloudEvent {
|
|
5
|
-
data?: any
|
|
5
|
+
data?: Record<string, any>;
|
|
6
6
|
data_base64?: string;
|
|
7
7
|
datacontenttype?: string;
|
|
8
8
|
dataschema?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EntityProperties } from './entity-properties';
|
|
2
2
|
export interface AsJson {
|
|
3
|
-
[propName: string]: any;
|
|
3
|
+
[propName: string]: Record<string, any> | undefined;
|
|
4
4
|
}
|
|
5
5
|
export declare function fromJson($model: AsJson): EntityProperties;
|
|
6
6
|
export declare function toJson($model: EntityProperties): AsJson;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The allowed value of the enum.
|
|
3
|
-
* This is just an alias for a type any
|
|
4
|
-
* @typedef {any} EnumValueValue
|
|
3
|
+
* This is just an alias for a type Record<string, any>.
|
|
4
|
+
* @typedef {Record<string, any>} EnumValueValue
|
|
5
5
|
*/
|
|
6
|
-
export declare type EnumValueValue = any
|
|
6
|
+
export declare type EnumValueValue = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { EnumValueValue } from './enum-value-value';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): EnumValueValue;
|
|
4
4
|
export declare function toJson($model: EnumValueValue): AsJson;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Configuration
|
|
3
|
-
* This is just an alias for a type any
|
|
4
|
-
* @typedef {any} ExtensionMonitoringConfigurationValue
|
|
3
|
+
* This is just an alias for a type Record<string, any>.
|
|
4
|
+
* @typedef {Record<string, any>} ExtensionMonitoringConfigurationValue
|
|
5
5
|
*/
|
|
6
|
-
export declare type ExtensionMonitoringConfigurationValue = any
|
|
6
|
+
export declare type ExtensionMonitoringConfigurationValue = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ExtensionMonitoringConfigurationValue } from './extension-monitoring-configuration-value';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): ExtensionMonitoringConfigurationValue;
|
|
4
4
|
export declare function toJson($model: ExtensionMonitoringConfigurationValue): AsJson;
|
|
@@ -8,7 +8,7 @@ Following properties have special semantics:
|
|
|
8
8
|
- event.kind - Always overridden to 'BIZ_EVENT'
|
|
9
9
|
|
|
10
10
|
Any other keys will be transferred as event properties.
|
|
11
|
-
* This is just an alias for a type any
|
|
12
|
-
* @typedef {any} IngestBody
|
|
11
|
+
* This is just an alias for a type Record<string, any>.
|
|
12
|
+
* @typedef {Record<string, any>} IngestBody
|
|
13
13
|
*/
|
|
14
|
-
export declare type IngestBody = any
|
|
14
|
+
export declare type IngestBody = Record<string, any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The monitoring configuration
|
|
3
|
-
* This is just an alias for a type any
|
|
4
|
-
* @typedef {any} JsonNode
|
|
3
|
+
* This is just an alias for a type Record<string, any>.
|
|
4
|
+
* @typedef {Record<string, any>} JsonNode
|
|
5
5
|
*/
|
|
6
|
-
export declare type JsonNode = any
|
|
6
|
+
export declare type JsonNode = Record<string, any>;
|
|
@@ -217,7 +217,7 @@ Supported semantic attribute keys:
|
|
|
217
217
|
* winlog.opcode
|
|
218
218
|
* winlog.provider
|
|
219
219
|
* winlog.task
|
|
220
|
-
* This is just an alias for a type any
|
|
221
|
-
* @typedef {any} LogMessageJson
|
|
220
|
+
* This is just an alias for a type Record<string, any>.
|
|
221
|
+
* @typedef {Record<string, any>} LogMessageJson
|
|
222
222
|
*/
|
|
223
|
-
export declare type LogMessageJson = any
|
|
223
|
+
export declare type LogMessageJson = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { LogMessageJson } from './log-message-json';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): LogMessageJson;
|
|
4
4
|
export declare function toJson($model: LogMessageJson): AsJson;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* The log message in plain text.
|
|
3
3
|
|
|
4
4
|
The length of the message is limited to 65,536 bytes for Grail tenants and to 8,192 bytes for other tenants. Any content exceeding the limit is trimmed.
|
|
5
|
-
* This is just an alias for a type any
|
|
6
|
-
* @typedef {any} LogMessagePlain
|
|
5
|
+
* This is just an alias for a type Record<string, any>.
|
|
6
|
+
* @typedef {Record<string, any>} LogMessagePlain
|
|
7
7
|
*/
|
|
8
|
-
export declare type LogMessagePlain = any
|
|
8
|
+
export declare type LogMessagePlain = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { LogMessagePlain } from './log-message-plain';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): LogMessagePlain;
|
|
4
4
|
export declare function toJson($model: LogMessagePlain): AsJson;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Customized script properties for this on-demand batch execution.
|
|
3
|
-
* This is just an alias for a type any
|
|
4
|
-
* @typedef {any} ObjectNode
|
|
3
|
+
* This is just an alias for a type Record<string, any>.
|
|
4
|
+
* @typedef {Record<string, any>} ObjectNode
|
|
5
5
|
*/
|
|
6
|
-
export declare type ObjectNode = any
|
|
6
|
+
export declare type ObjectNode = Record<string, any>;
|
package/types/packages/client/classic-environment-v2/src/lib/models/precondition-expected-value.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* The expected value of the property.
|
|
3
3
|
|
|
4
4
|
Only applicable to properties of the `EQUALS` type.
|
|
5
|
-
* This is just an alias for a type any
|
|
6
|
-
* @typedef {any} PreconditionExpectedValue
|
|
5
|
+
* This is just an alias for a type Record<string, any>.
|
|
6
|
+
* @typedef {Record<string, any>} PreconditionExpectedValue
|
|
7
7
|
*/
|
|
8
|
-
export declare type PreconditionExpectedValue = any
|
|
8
|
+
export declare type PreconditionExpectedValue = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { PreconditionExpectedValue } from './precondition-expected-value';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): PreconditionExpectedValue;
|
|
4
4
|
export declare function toJson($model: PreconditionExpectedValue): AsJson;
|
package/types/packages/client/classic-environment-v2/src/lib/models/precondition.transformation.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _PreconditionTypeTransformation from './precondition-type.transforma
|
|
|
4
4
|
import * as _PreconditionTransformation from './precondition.transformation';
|
|
5
5
|
export interface AsJson {
|
|
6
6
|
expectedValue?: _PreconditionExpectedValueTransformation.AsJson;
|
|
7
|
-
expectedValues?: any[];
|
|
7
|
+
expectedValues?: Record<string, any>[];
|
|
8
8
|
pattern?: string;
|
|
9
9
|
precondition?: _PreconditionTransformation.AsJson;
|
|
10
10
|
preconditions?: _PreconditionTransformation.AsJson[];
|
package/types/packages/client/classic-environment-v2/src/lib/models/property-definition-default.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* The default value to be used when no value is provided.
|
|
3
3
|
|
|
4
4
|
If a non-singleton has the value of `null`, it means an empty collection.
|
|
5
|
-
* This is just an alias for a type any
|
|
6
|
-
* @typedef {any} PropertyDefinitionDefault
|
|
5
|
+
* This is just an alias for a type Record<string, any>.
|
|
6
|
+
* @typedef {Record<string, any>} PropertyDefinitionDefault
|
|
7
7
|
*/
|
|
8
|
-
export declare type PropertyDefinitionDefault = any
|
|
8
|
+
export declare type PropertyDefinitionDefault = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { PropertyDefinitionDefault } from './property-definition-default';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): PropertyDefinitionDefault;
|
|
4
4
|
export declare function toJson($model: PropertyDefinitionDefault): AsJson;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
It defines the actual values of settings' parameters.
|
|
5
5
|
|
|
6
6
|
The actual content depends on the object's schema.
|
|
7
|
-
* This is just an alias for a type any
|
|
8
|
-
* @typedef {any} SettingsValue
|
|
7
|
+
* This is just an alias for a type Record<string, any>.
|
|
8
|
+
* @typedef {Record<string, any>} SettingsValue
|
|
9
9
|
*/
|
|
10
|
-
export declare type SettingsValue = any
|
|
10
|
+
export declare type SettingsValue = Record<string, any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Customized script properties for this on-demand batch execution.
|
|
3
|
-
* This is just an alias for a type any
|
|
4
|
-
* @typedef {any} SyntheticOnDemandExecutionRequestMonitorCustomizedScript
|
|
3
|
+
* This is just an alias for a type Record<string, any>.
|
|
4
|
+
* @typedef {Record<string, any>} SyntheticOnDemandExecutionRequestMonitorCustomizedScript
|
|
5
5
|
*/
|
|
6
|
-
export declare type SyntheticOnDemandExecutionRequestMonitorCustomizedScript = any
|
|
6
|
+
export declare type SyntheticOnDemandExecutionRequestMonitorCustomizedScript = Record<string, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SyntheticOnDemandExecutionRequestMonitorCustomizedScript } from './synthetic-on-demand-execution-request-monitor-customized-script';
|
|
2
|
-
export declare type AsJson = any
|
|
2
|
+
export declare type AsJson = Record<string, any>;
|
|
3
3
|
export declare function fromJson($model: AsJson): SyntheticOnDemandExecutionRequestMonitorCustomizedScript;
|
|
4
4
|
export declare function toJson($model: SyntheticOnDemandExecutionRequestMonitorCustomizedScript): AsJson;
|