@dynatrace-sdk/client-classic-environment-v2 6.1.0 → 7.0.0

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/types/index.d.ts CHANGED
@@ -788,7 +788,7 @@ export declare interface ActiveGate {
788
788
  */
789
789
  activeGateTokens?: ActiveGateTokenInfoDto[];
790
790
  /**
791
- * Configuration of the ActiveGate auto-updates.
791
+ * Auto-update configuration for an individual environment ActiveGate.
792
792
  */
793
793
  autoUpdateSettings?: ActiveGateAutoUpdateConfig;
794
794
  /**
@@ -872,7 +872,7 @@ export declare interface ActiveGate {
872
872
  }
873
873
 
874
874
  /**
875
- * Configuration of the ActiveGate auto-updates.
875
+ * Auto-update configuration for an individual environment ActiveGate.
876
876
  */
877
877
  export declare interface ActiveGateAutoUpdateConfig {
878
878
  /**
@@ -882,11 +882,21 @@ export declare interface ActiveGateAutoUpdateConfig {
882
882
  */
883
883
  effectiveSetting?: 'ENABLED' | 'DISABLED';
884
884
  /**
885
- * The state of the ActiveGate auto-update: enabled, disabled, or inherited.
885
+ * The state of the environment ActiveGate auto-update: enabled, disabled, or inherited.
886
886
  *
887
- * If set to `INHERITED`, the setting is inherited from the global configuration set on the environment or Managed cluster level.
887
+ * If set to `INHERITED`, the setting is inherited from the global environment ActiveGate auto-update configuration.
888
888
  */
889
889
  setting: 'DISABLED' | 'ENABLED' | 'INHERITED';
890
+ /**
891
+ * The target version of the ActiveGate.
892
+ *
893
+ * Specify the version in the `<major>.<minor>` format (for example `1.342`) or `latest`, `previous`, or `older`.
894
+ */
895
+ targetVersion?: string;
896
+ /**
897
+ * Basic information about all configured update windows
898
+ */
899
+ updateWindows?: UpdateWindowsConfig;
890
900
  }
891
901
 
892
902
  /**
@@ -902,9 +912,9 @@ export declare enum ActiveGateAutoUpdateConfigEffectiveSetting {
902
912
  }
903
913
 
904
914
  /**
905
- * The state of the ActiveGate auto-update: enabled, disabled, or inherited.
915
+ * The state of the environment ActiveGate auto-update: enabled, disabled, or inherited.
906
916
  *
907
- * If set to `INHERITED`, the setting is inherited from the global configuration set on the environment or Managed cluster level.
917
+ * If set to `INHERITED`, the setting is inherited from the global environment ActiveGate auto-update configuration.
908
918
  *
909
919
  * @deprecated Use literal values.
910
920
  */
@@ -942,25 +952,37 @@ export declare interface ActiveGateConnectedHosts {
942
952
  }
943
953
 
944
954
  /**
945
- * Global configuration of ActiveGates auto-update.
955
+ * Global auto-update configuration for environment ActiveGates. Applies to all environment ActiveGates that have the `INHERITED` auto-update setting.
946
956
  */
947
957
  export declare interface ActiveGateGlobalAutoUpdateConfig {
948
958
  /**
949
- * The state of auto-updates for all ActiveGates connected to the environment or Managed cluster.
959
+ * The state of auto-updates for all environment ActiveGates.
950
960
  *
951
- * This setting is inherited by all ActiveGates that have the `INHERITED` setting.
961
+ * This setting is inherited by all environment ActiveGates that have the `INHERITED` setting.
952
962
  */
953
963
  globalSetting: 'ENABLED' | 'DISABLED';
954
964
  /**
955
965
  * Metadata useful for debugging
956
966
  */
957
967
  metadata?: ConfigurationMetadata;
968
+ /**
969
+ * Version to update a ActiveGate to when automatic updates are enabled.
970
+ *
971
+ * Supports relative versions `latest`, `previous` and `older` as well as specific version in `<major>.<minor>` format (for example `1.261`).
972
+ *
973
+ * Only applicable when the **setting** parameter is set to `ENABLED`.
974
+ */
975
+ targetVersion?: string;
976
+ /**
977
+ * Basic information about all configured update windows
978
+ */
979
+ updateWindows?: UpdateWindowsConfig;
958
980
  }
959
981
 
960
982
  /**
961
- * The state of auto-updates for all ActiveGates connected to the environment or Managed cluster.
983
+ * The state of auto-updates for all environment ActiveGates.
962
984
  *
963
- * This setting is inherited by all ActiveGates that have the `INHERITED` setting.
985
+ * This setting is inherited by all environment ActiveGates that have the `INHERITED` setting.
964
986
  *
965
987
  * @deprecated Use literal values.
966
988
  */
@@ -1283,7 +1305,18 @@ export declare class ActiveGatesAutoUpdateConfigurationClient {
1283
1305
  *
1284
1306
  * const data =
1285
1307
  * await activeGatesAutoUpdateConfigurationClient.putGlobalAutoUpdateConfigForTenant(
1286
- * { body: { globalSetting: "ENABLED" } },
1308
+ * {
1309
+ * body: {
1310
+ * globalSetting: "ENABLED",
1311
+ * updateWindows: {
1312
+ * windows: [
1313
+ * {
1314
+ * id: "vu9U3hXa3q0AAAABADdkeW5hdHJhY2Uuc2V0dGluZ3MuZGVwbG95bWVudC5tYW5h",
1315
+ * },
1316
+ * ],
1317
+ * },
1318
+ * },
1319
+ * },
1287
1320
  * );
1288
1321
  *
1289
1322
  * @throws {ErrorEnvelopeError} Failed. The input is invalid. | Client side error. | Server side error.
@@ -1317,7 +1350,18 @@ export declare class ActiveGatesAutoUpdateConfigurationClient {
1317
1350
  *
1318
1351
  * const data =
1319
1352
  * await activeGatesAutoUpdateConfigurationClient.validateGlobalAutoUpdateConfigForTenant(
1320
- * { body: { globalSetting: "ENABLED" } },
1353
+ * {
1354
+ * body: {
1355
+ * globalSetting: "ENABLED",
1356
+ * updateWindows: {
1357
+ * windows: [
1358
+ * {
1359
+ * id: "vu9U3hXa3q0AAAABADdkeW5hdHJhY2Uuc2V0dGluZ3MuZGVwbG95bWVudC5tYW5h",
1360
+ * },
1361
+ * ],
1362
+ * },
1363
+ * },
1364
+ * },
1321
1365
  * );
1322
1366
  *
1323
1367
  * @throws {ErrorEnvelopeError} Failed. The input is invalid. | Client side error. | Server side error.
@@ -1387,7 +1431,19 @@ export declare class ActiveGatesAutoUpdateConfigurationClient {
1387
1431
  *
1388
1432
  * const data =
1389
1433
  * await activeGatesAutoUpdateConfigurationClient.putAutoUpdateConfigById(
1390
- * { agId: "...", body: { setting: "INHERITED" } },
1434
+ * {
1435
+ * agId: "...",
1436
+ * body: {
1437
+ * setting: "INHERITED",
1438
+ * updateWindows: {
1439
+ * windows: [
1440
+ * {
1441
+ * id: "vu9U3hXa3q0AAAABADdkeW5hdHJhY2Uuc2V0dGluZ3MuZGVwbG95bWVudC5tYW5h",
1442
+ * },
1443
+ * ],
1444
+ * },
1445
+ * },
1446
+ * },
1391
1447
  * );
1392
1448
  *
1393
1449
  * @throws {ErrorEnvelopeError} Failed. The input is invalid. | Client side error. | Server side error.
@@ -1422,7 +1478,19 @@ export declare class ActiveGatesAutoUpdateConfigurationClient {
1422
1478
  *
1423
1479
  * const data =
1424
1480
  * await activeGatesAutoUpdateConfigurationClient.validateAutoUpdateConfigById(
1425
- * { agId: "...", body: { setting: "INHERITED" } },
1481
+ * {
1482
+ * agId: "...",
1483
+ * body: {
1484
+ * setting: "INHERITED",
1485
+ * updateWindows: {
1486
+ * windows: [
1487
+ * {
1488
+ * id: "vu9U3hXa3q0AAAABADdkeW5hdHJhY2Uuc2V0dGluZ3MuZGVwbG95bWVudC5tYW5h",
1489
+ * },
1490
+ * ],
1491
+ * },
1492
+ * },
1493
+ * },
1426
1494
  * );
1427
1495
  *
1428
1496
  * @throws {ErrorEnvelopeError} Failed. The input is invalid. | Client side error. | Server side error.
@@ -2301,6 +2369,48 @@ export declare enum ActiveGateType {
2301
2369
  EnvironmentMulti = "ENVIRONMENT_MULTI"
2302
2370
  }
2303
2371
 
2372
+ /**
2373
+ * Read sampling configuration for Adaptive Traffic Management
2374
+ */
2375
+ export declare class AdaptiveTrafficManagementClient {
2376
+ private httpClient;
2377
+ private shouldTransformDates;
2378
+ /**
2379
+ * @param {HttpClient} httpClientImplementation - You can provide custom http client as a parameter to constructor of a AdaptiveTrafficManagementClient. Custom http client should implement {HttpClient} interface.
2380
+ * @param {ApiClientOptions} [options] - Optional configuration for SDK Client.
2381
+ * @example
2382
+ * const adaptiveTrafficManagementClientNodeJs = new AdaptiveTrafficManagementClient(yourCustomImplementation);
2383
+ */
2384
+ constructor(httpClientImplementation: HttpClient, options?: ApiClientOptions);
2385
+ /**
2386
+ * Gets sampling configuration.
2387
+ *
2388
+ * **Required scope:** adaptive-traffic-management:sampling-configuration:read
2389
+ *
2390
+ * @returns {Promise<AdaptiveTrafficManagementDto>} Success
2391
+ *
2392
+ * @example <caption>Code example</caption>
2393
+ * import { adaptiveTrafficManagementClient } from "@dynatrace-sdk/client-classic-environment-v2";
2394
+ *
2395
+ * const data =
2396
+ * await adaptiveTrafficManagementClient.getRootSpansPerMinute();
2397
+ *
2398
+ * @throws {ErrorEnvelopeError} Client side error. | Server side error.
2399
+ * @throws {InvalidResponseError}
2400
+ * @throws {ApiClientError}
2401
+ * @throws {ClientRequestError}
2402
+ */
2403
+ getRootSpansPerMinute(config?: {
2404
+ abortSignal?: AbortSignal_2;
2405
+ } | AbortSignal_2): Promise<AdaptiveTrafficManagementDto>;
2406
+ }
2407
+
2408
+ export declare const adaptiveTrafficManagementClient: AdaptiveTrafficManagementClient;
2409
+
2410
+ export declare interface AdaptiveTrafficManagementDto {
2411
+ rootSpansPerMinute?: number;
2412
+ }
2413
+
2304
2414
  /**
2305
2415
  * A list of custom tags added to monitored entities.
2306
2416
  */
@@ -2490,7 +2600,7 @@ export declare interface ApiToken {
2490
2600
  /**
2491
2601
  * A list of scopes assigned to the token.
2492
2602
  */
2493
- scopes?: Array<'ActiveGateCertManagement' | 'AdvancedSyntheticIntegration' | 'CaptureRequestData' | 'DTAQLAccess' | 'DataExport' | 'DataImport' | 'DataPrivacy' | 'Davis' | 'DiagnosticExport' | 'DssFileManagement' | 'ExternalSyntheticIntegration' | 'InstallerDownload' | 'LogExport' | 'MemoryDump' | 'Mobile' | 'PluginUpload' | 'ReadConfig' | 'ReadSyntheticData' | 'RestRequestForwarding' | 'RumBrowserExtension' | 'RumJavaScriptTagManagement' | 'SupportAlert' | 'TenantTokenManagement' | 'UserSessionAnonymization' | 'ViewDashboard' | 'ViewReport' | 'WriteConfig' | 'WriteSyntheticData' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.write' | 'activeGates.read' | 'activeGates.write' | 'adaptiveTrafficManagement.read' | 'agentTokenManagement.read' | 'apiTokens.read' | 'apiTokens.write' | 'attacks.read' | 'attacks.write' | 'auditLogs.read' | 'bizevents.ingest' | 'credentialVault.read' | 'credentialVault.write' | 'entities.read' | 'entities.write' | 'events.ingest' | 'events.read' | 'extensionConfigurationActions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'extensions.read' | 'extensions.write' | 'geographicRegions.read' | 'hub.install' | 'hub.read' | 'hub.write' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'logs.ingest' | 'logs.read' | 'metrics.ingest' | 'metrics.read' | 'metrics.write' | 'networkZones.read' | 'networkZones.write' | 'oneAgents.read' | 'oneAgents.write' | 'openTelemetryTrace.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'problems.read' | 'problems.write' | 'releases.read' | 'rumCookieNames.read' | 'rumManualInsertionTags.read' | 'securityProblems.read' | 'securityProblems.write' | 'settings.read' | 'settings.write' | 'slo.read' | 'slo.write' | 'syntheticExecutions.read' | 'syntheticExecutions.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'tenantTokenRotation.write' | 'traces.lookup' | 'unifiedAnalysis.read'>;
2603
+ scopes?: Array<'ActiveGateCertManagement' | 'AdvancedSyntheticIntegration' | 'CaptureRequestData' | 'DTAQLAccess' | 'DataExport' | 'DataImport' | 'DataPrivacy' | 'Davis' | 'DiagnosticExport' | 'DssFileManagement' | 'ExternalSyntheticIntegration' | 'InstallerDownload' | 'LogExport' | 'MemoryDump' | 'Mobile' | 'PluginUpload' | 'ReadConfig' | 'ReadSyntheticData' | 'RestRequestForwarding' | 'RumBrowserExtension' | 'RumJavaScriptTagManagement' | 'SupportAlert' | 'TenantTokenManagement' | 'UserSessionAnonymization' | 'ViewDashboard' | 'ViewReport' | 'WriteConfig' | 'WriteSyntheticData' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.write' | 'activeGates.read' | 'activeGates.write' | 'adaptiveTrafficManagement.read' | 'agentTokenManagement.read' | 'apiTokens.read' | 'apiTokens.write' | 'attacks.read' | 'attacks.write' | 'auditLogs.read' | 'bizevents.ingest' | 'credentialVault.read' | 'credentialVault.write' | 'entities.read' | 'entities.write' | 'events.ingest' | 'events.read' | 'extensionConfigurationActions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'extensions.read' | 'extensions.write' | 'geographicRegions.read' | 'hub.install' | 'hub.read' | 'hub.write' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'logs.ingest' | 'logs.read' | 'metrics.ingest' | 'metrics.read' | 'metrics.write' | 'networkZones.read' | 'networkZones.write' | 'oneAgents.read' | 'oneAgents.write' | 'openTelemetryTrace.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'openpipeline.events_smartscape' | 'problems.read' | 'problems.write' | 'releases.read' | 'rumCookieNames.read' | 'rumManualInsertionTags.read' | 'securityProblems.read' | 'securityProblems.write' | 'settings.read' | 'settings.write' | 'slo.read' | 'slo.write' | 'syntheticExecutions.read' | 'syntheticExecutions.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'tenantTokenRotation.write' | 'traces.lookup' | 'unifiedAnalysis.read'>;
2494
2604
  }
2495
2605
 
2496
2606
  /**
@@ -2578,6 +2688,7 @@ export declare interface ApiTokenCreate {
2578
2688
  * * `openpipeline.events_security.custom`: OpenPipeline - Ingest Security Events (Custom).
2579
2689
  * * `openpipeline.events_sdlc`: OpenPipeline - Ingest Software Development Lifecycle Events (Built-in).
2580
2690
  * * `openpipeline.events_sdlc.custom`: OpenPipeline - Ingest Software Development Lifecycle Events (Custom).
2691
+ * * `openpipeline.events_smartscape`: OpenPipeline - Ingest Smartscape Events (Built-in).
2581
2692
  * * `bizevents.ingest`: Ingest bizevents.
2582
2693
  * * `networkZones.read`: Read network zones.
2583
2694
  * * `networkZones.write`: Write network zones.
@@ -2630,7 +2741,7 @@ export declare interface ApiTokenCreate {
2630
2741
  * * `extensionDiscoveryJmx.read`: Read discovered JMX metrics via extensions.
2631
2742
  * * `extensionDiscoveryPmi.read`: Read discovered PMI metrics via extensions.
2632
2743
  */
2633
- scopes: Array<'InstallerDownload' | 'DataExport' | 'PluginUpload' | 'SupportAlert' | 'AdvancedSyntheticIntegration' | 'ExternalSyntheticIntegration' | 'RumBrowserExtension' | 'LogExport' | 'ReadConfig' | 'WriteConfig' | 'DTAQLAccess' | 'UserSessionAnonymization' | 'DataPrivacy' | 'CaptureRequestData' | 'Davis' | 'DssFileManagement' | 'RumJavaScriptTagManagement' | 'TenantTokenManagement' | 'ActiveGateCertManagement' | 'RestRequestForwarding' | 'ReadSyntheticData' | 'DataImport' | 'syntheticExecutions.write' | 'syntheticExecutions.read' | 'auditLogs.read' | 'metrics.read' | 'metrics.write' | 'entities.read' | 'entities.write' | 'problems.read' | 'problems.write' | 'events.read' | 'events.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'bizevents.ingest' | 'networkZones.read' | 'networkZones.write' | 'activeGates.read' | 'activeGates.write' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.write' | 'agentTokenManagement.read' | 'credentialVault.read' | 'credentialVault.write' | 'extensions.read' | 'extensions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'metrics.ingest' | 'attacks.read' | 'attacks.write' | 'securityProblems.read' | 'securityProblems.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'settings.read' | 'settings.write' | 'tenantTokenRotation.write' | 'slo.read' | 'slo.write' | 'releases.read' | 'apiTokens.read' | 'apiTokens.write' | 'openTelemetryTrace.ingest' | 'logs.read' | 'logs.ingest' | 'geographicRegions.read' | 'oneAgents.read' | 'oneAgents.write' | 'traces.lookup' | 'unifiedAnalysis.read' | 'hub.read' | 'hub.write' | 'hub.install' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'extensionConfigurationActions.write' | 'rumCookieNames.read' | 'adaptiveTrafficManagement.read' | 'rumManualInsertionTags.read' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read'>;
2744
+ scopes: Array<'InstallerDownload' | 'DataExport' | 'PluginUpload' | 'SupportAlert' | 'AdvancedSyntheticIntegration' | 'ExternalSyntheticIntegration' | 'RumBrowserExtension' | 'LogExport' | 'ReadConfig' | 'WriteConfig' | 'DTAQLAccess' | 'UserSessionAnonymization' | 'DataPrivacy' | 'CaptureRequestData' | 'Davis' | 'DssFileManagement' | 'RumJavaScriptTagManagement' | 'TenantTokenManagement' | 'ActiveGateCertManagement' | 'RestRequestForwarding' | 'ReadSyntheticData' | 'DataImport' | 'syntheticExecutions.write' | 'syntheticExecutions.read' | 'auditLogs.read' | 'metrics.read' | 'metrics.write' | 'entities.read' | 'entities.write' | 'problems.read' | 'problems.write' | 'events.read' | 'events.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'openpipeline.events_smartscape' | 'bizevents.ingest' | 'networkZones.read' | 'networkZones.write' | 'activeGates.read' | 'activeGates.write' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.write' | 'agentTokenManagement.read' | 'credentialVault.read' | 'credentialVault.write' | 'extensions.read' | 'extensions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'metrics.ingest' | 'attacks.read' | 'attacks.write' | 'securityProblems.read' | 'securityProblems.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'settings.read' | 'settings.write' | 'tenantTokenRotation.write' | 'slo.read' | 'slo.write' | 'releases.read' | 'apiTokens.read' | 'apiTokens.write' | 'openTelemetryTrace.ingest' | 'logs.read' | 'logs.ingest' | 'geographicRegions.read' | 'oneAgents.read' | 'oneAgents.write' | 'traces.lookup' | 'unifiedAnalysis.read' | 'hub.read' | 'hub.write' | 'hub.install' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'extensionConfigurationActions.write' | 'rumCookieNames.read' | 'adaptiveTrafficManagement.read' | 'rumManualInsertionTags.read' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read'>;
2634
2745
  }
2635
2746
 
2636
2747
  /**
@@ -2694,6 +2805,7 @@ export declare enum ApiTokenCreateScopesItem {
2694
2805
  OpenpipelineEventsSecurityCustom = "openpipeline.events_security.custom",
2695
2806
  OpenpipelineEventsSdlc = "openpipeline.events_sdlc",
2696
2807
  OpenpipelineEventsSdlcCustom = "openpipeline.events_sdlc.custom",
2808
+ OpenpipelineEventsSmartscape = "openpipeline.events_smartscape",
2697
2809
  BizeventsIngest = "bizevents.ingest",
2698
2810
  NetworkZonesRead = "networkZones.read",
2699
2811
  NetworkZonesWrite = "networkZones.write",
@@ -2853,6 +2965,7 @@ export declare enum ApiTokenScopesItem {
2853
2965
  OpenpipelineEventsSdlcCustom = "openpipeline.events_sdlc.custom",
2854
2966
  OpenpipelineEventsSecurity = "openpipeline.events_security",
2855
2967
  OpenpipelineEventsSecurityCustom = "openpipeline.events_security.custom",
2968
+ OpenpipelineEventsSmartscape = "openpipeline.events_smartscape",
2856
2969
  ProblemsRead = "problems.read",
2857
2970
  ProblemsWrite = "problems.write",
2858
2971
  ReleasesRead = "releases.read",
@@ -2936,6 +3049,7 @@ export declare interface ApiTokenUpdate {
2936
3049
  * * `openpipeline.events_security.custom`: OpenPipeline - Ingest Security Events (Custom).
2937
3050
  * * `openpipeline.events_sdlc`: OpenPipeline - Ingest Software Development Lifecycle Events (Built-in).
2938
3051
  * * `openpipeline.events_sdlc.custom`: OpenPipeline - Ingest Software Development Lifecycle Events (Custom).
3052
+ * * `openpipeline.events_smartscape`: OpenPipeline - Ingest Smartscape Events (Built-in).
2939
3053
  * * `bizevents.ingest`: Ingest bizevents.
2940
3054
  * * `networkZones.read`: Read network zones.
2941
3055
  * * `networkZones.write`: Write network zones.
@@ -2988,7 +3102,7 @@ export declare interface ApiTokenUpdate {
2988
3102
  * * `extensionDiscoveryJmx.read`: Read discovered JMX metrics via extensions.
2989
3103
  * * `extensionDiscoveryPmi.read`: Read discovered PMI metrics via extensions.
2990
3104
  */
2991
- scopes?: Array<'InstallerDownload' | 'DataExport' | 'PluginUpload' | 'SupportAlert' | 'AdvancedSyntheticIntegration' | 'ExternalSyntheticIntegration' | 'RumBrowserExtension' | 'LogExport' | 'ReadConfig' | 'WriteConfig' | 'DTAQLAccess' | 'UserSessionAnonymization' | 'DataPrivacy' | 'CaptureRequestData' | 'Davis' | 'DssFileManagement' | 'RumJavaScriptTagManagement' | 'TenantTokenManagement' | 'ActiveGateCertManagement' | 'RestRequestForwarding' | 'ReadSyntheticData' | 'DataImport' | 'syntheticExecutions.write' | 'syntheticExecutions.read' | 'auditLogs.read' | 'metrics.read' | 'metrics.write' | 'entities.read' | 'entities.write' | 'problems.read' | 'problems.write' | 'events.read' | 'events.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'bizevents.ingest' | 'networkZones.read' | 'networkZones.write' | 'activeGates.read' | 'activeGates.write' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.write' | 'agentTokenManagement.read' | 'credentialVault.read' | 'credentialVault.write' | 'extensions.read' | 'extensions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'metrics.ingest' | 'attacks.read' | 'attacks.write' | 'securityProblems.read' | 'securityProblems.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'settings.read' | 'settings.write' | 'tenantTokenRotation.write' | 'slo.read' | 'slo.write' | 'releases.read' | 'apiTokens.read' | 'apiTokens.write' | 'openTelemetryTrace.ingest' | 'logs.read' | 'logs.ingest' | 'geographicRegions.read' | 'oneAgents.read' | 'oneAgents.write' | 'traces.lookup' | 'unifiedAnalysis.read' | 'hub.read' | 'hub.write' | 'hub.install' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'extensionConfigurationActions.write' | 'rumCookieNames.read' | 'adaptiveTrafficManagement.read' | 'rumManualInsertionTags.read' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read'>;
3105
+ scopes?: Array<'InstallerDownload' | 'DataExport' | 'PluginUpload' | 'SupportAlert' | 'AdvancedSyntheticIntegration' | 'ExternalSyntheticIntegration' | 'RumBrowserExtension' | 'LogExport' | 'ReadConfig' | 'WriteConfig' | 'DTAQLAccess' | 'UserSessionAnonymization' | 'DataPrivacy' | 'CaptureRequestData' | 'Davis' | 'DssFileManagement' | 'RumJavaScriptTagManagement' | 'TenantTokenManagement' | 'ActiveGateCertManagement' | 'RestRequestForwarding' | 'ReadSyntheticData' | 'DataImport' | 'syntheticExecutions.write' | 'syntheticExecutions.read' | 'auditLogs.read' | 'metrics.read' | 'metrics.write' | 'entities.read' | 'entities.write' | 'problems.read' | 'problems.write' | 'events.read' | 'events.ingest' | 'openpipeline.events' | 'openpipeline.events.custom' | 'openpipeline.events_security' | 'openpipeline.events_security.custom' | 'openpipeline.events_sdlc' | 'openpipeline.events_sdlc.custom' | 'openpipeline.events_smartscape' | 'bizevents.ingest' | 'networkZones.read' | 'networkZones.write' | 'activeGates.read' | 'activeGates.write' | 'activeGateTokenManagement.read' | 'activeGateTokenManagement.create' | 'activeGateTokenManagement.write' | 'agentTokenManagement.read' | 'credentialVault.read' | 'credentialVault.write' | 'extensions.read' | 'extensions.write' | 'extensionConfigurations.read' | 'extensionConfigurations.write' | 'extensionEnvironment.read' | 'extensionEnvironment.write' | 'metrics.ingest' | 'attacks.read' | 'attacks.write' | 'securityProblems.read' | 'securityProblems.write' | 'syntheticLocations.read' | 'syntheticLocations.write' | 'settings.read' | 'settings.write' | 'tenantTokenRotation.write' | 'slo.read' | 'slo.write' | 'releases.read' | 'apiTokens.read' | 'apiTokens.write' | 'openTelemetryTrace.ingest' | 'logs.read' | 'logs.ingest' | 'geographicRegions.read' | 'oneAgents.read' | 'oneAgents.write' | 'traces.lookup' | 'unifiedAnalysis.read' | 'hub.read' | 'hub.write' | 'hub.install' | 'javaScriptMappingFiles.read' | 'javaScriptMappingFiles.write' | 'extensionConfigurationActions.write' | 'rumCookieNames.read' | 'adaptiveTrafficManagement.read' | 'rumManualInsertionTags.read' | 'extensionDiscoveryJmx.read' | 'extensionDiscoveryPmi.read'>;
2992
3106
  }
2993
3107
 
2994
3108
  /**
@@ -3034,6 +3148,7 @@ export declare enum ApiTokenUpdateScopesItem {
3034
3148
  OpenpipelineEventsSecurityCustom = "openpipeline.events_security.custom",
3035
3149
  OpenpipelineEventsSdlc = "openpipeline.events_sdlc",
3036
3150
  OpenpipelineEventsSdlcCustom = "openpipeline.events_sdlc.custom",
3151
+ OpenpipelineEventsSmartscape = "openpipeline.events_smartscape",
3037
3152
  BizeventsIngest = "bizevents.ingest",
3038
3153
  NetworkZonesRead = "networkZones.read",
3039
3154
  NetworkZonesWrite = "networkZones.write",
@@ -3156,7 +3271,7 @@ export declare interface AssetInfoDto {
3156
3271
  /**
3157
3272
  * The type of the asset.
3158
3273
  */
3159
- type?: 'ALERT' | 'ALERT_TEMPLATE' | 'AWS_SERVICE' | 'CUSTOM_CARDS' | 'DASHBOARD' | 'DECLARATIVE_PROCESSES' | 'DOCUMENT_DASHBOARD' | 'DQL_LOG_METRIC' | 'DQL_LOG_PROCESSING_RULE' | 'GENERIC_RELATIONSHIP' | 'GENERIC_TYPE' | 'LIST_SCREEN_FILTERS' | 'LIST_SCREEN_INJECTIONS' | 'LIST_SCREEN_LAYOUT' | 'LOG_EVENT' | 'LOG_METRIC' | 'LOG_PROCESSING_RULE' | 'LQL_LOG_METRIC' | 'LQL_LOG_PROCESSING_RULE' | 'METRIC_METADATA' | 'METRIC_QUERY' | 'OPEN_PIPELINE' | 'PROCESS_GROUPING_RULES' | 'SCREEN_ACTIONS' | 'SCREEN_CHART_GROUPS' | 'SCREEN_DQL_TABLE' | 'SCREEN_ENTITIES_LISTS' | 'SCREEN_EVENTS_CARDS' | 'SCREEN_FILTERS' | 'SCREEN_HEALTH_CARDS' | 'SCREEN_INJECTIONS' | 'SCREEN_LAYOUT' | 'SCREEN_LOGS_CARDS' | 'SCREEN_MESSAGE_CARDS' | 'SCREEN_METRIC_TABLES' | 'SCREEN_PROBLEMS' | 'SCREEN_PROPERTIES';
3274
+ type?: 'ALERT' | 'ALERT_TEMPLATE' | 'AWS_SERVICE' | 'CUSTOM_CARDS' | 'DASHBOARD' | 'DECLARATIVE_PROCESSES' | 'DOCUMENT_DASHBOARD' | 'DOCUMENT_SCREEN' | 'DQL_LOG_METRIC' | 'DQL_LOG_PROCESSING_RULE' | 'GENERIC_RELATIONSHIP' | 'GENERIC_TYPE' | 'LIST_SCREEN_FILTERS' | 'LIST_SCREEN_INJECTIONS' | 'LIST_SCREEN_LAYOUT' | 'LOG_EVENT' | 'LOG_METRIC' | 'LOG_PROCESSING_RULE' | 'LQL_LOG_METRIC' | 'LQL_LOG_PROCESSING_RULE' | 'METRIC_METADATA' | 'METRIC_QUERY' | 'OPEN_PIPELINE' | 'PROCESS_GROUPING_RULES' | 'SCREEN_ACTIONS' | 'SCREEN_CHART_GROUPS' | 'SCREEN_DQL_TABLE' | 'SCREEN_ENTITIES_LISTS' | 'SCREEN_EVENTS_CARDS' | 'SCREEN_FILTERS' | 'SCREEN_HEALTH_CARDS' | 'SCREEN_INJECTIONS' | 'SCREEN_LAYOUT' | 'SCREEN_LOGS_CARDS' | 'SCREEN_MESSAGE_CARDS' | 'SCREEN_METRIC_TABLES' | 'SCREEN_PROBLEMS' | 'SCREEN_PROPERTIES';
3160
3275
  }
3161
3276
 
3162
3277
  /**
@@ -3172,6 +3287,7 @@ export declare enum AssetInfoDtoType {
3172
3287
  Dashboard = "DASHBOARD",
3173
3288
  DeclarativeProcesses = "DECLARATIVE_PROCESSES",
3174
3289
  DocumentDashboard = "DOCUMENT_DASHBOARD",
3290
+ DocumentScreen = "DOCUMENT_SCREEN",
3175
3291
  DqlLogMetric = "DQL_LOG_METRIC",
3176
3292
  DqlLogProcessingRule = "DQL_LOG_PROCESSING_RULE",
3177
3293
  GenericRelationship = "GENERIC_RELATIONSHIP",
@@ -4377,7 +4493,11 @@ export declare class BusinessEventsClient {
4377
4493
  /**
4378
4494
  * Ingests a business event
4379
4495
  *
4380
- * **Required scope:** storage:events:write<br/><br/>The maximum payload size of a single request is **5 MiB**. Requests with a greater payload are rejected, and the API returns a 413 response code.
4496
+ * **One of the following scopes is required:**
4497
+ * + storage:events:write
4498
+ * + openpipeline:bizevents:ingest
4499
+ *
4500
+ * <br/><br/>The maximum payload size of a single request is **5 MiB**. Requests with a greater payload are rejected, and the API returns a 413 response code.
4381
4501
  *
4382
4502
  * The ingestion of business events is subject to licensing (see [licensing documentation](https://www.dynatrace.com/support/help/shortlink/dps-events)).
4383
4503
  *
@@ -4862,6 +4982,49 @@ export declare enum ConstraintViolationParameterLocation {
4862
4982
  Query = "QUERY"
4863
4983
  }
4864
4984
 
4985
+ /**
4986
+ * Information about component type and images registry URI.
4987
+ */
4988
+ export declare interface ContainerImageComponent {
4989
+ /**
4990
+ * Registry URI of the container image component.
4991
+ */
4992
+ imageUri?: string;
4993
+ /**
4994
+ * Container image component type.
4995
+ */
4996
+ type?: 'activegate' | 'codemodules' | 'database-datasource-executor' | 'dynatrace-sql-extension-executor' | 'eec' | 'logmodule' | 'oneagent';
4997
+ }
4998
+
4999
+ /**
5000
+ * Container image component type.
5001
+ *
5002
+ * @deprecated Use literal values.
5003
+ */
5004
+ export declare enum ContainerImageComponentType {
5005
+ Activegate = "activegate",
5006
+ Codemodules = "codemodules",
5007
+ DatabaseDatasourceExecutor = "database-datasource-executor",
5008
+ DynatraceSqlExtensionExecutor = "dynatrace-sql-extension-executor",
5009
+ Eec = "eec",
5010
+ Logmodule = "logmodule",
5011
+ Oneagent = "oneagent"
5012
+ }
5013
+
5014
+ /**
5015
+ * Information about images registry and components with URI.
5016
+ */
5017
+ export declare interface ContainerImageData {
5018
+ /**
5019
+ * List of container image components.
5020
+ */
5021
+ components?: ContainerImageComponent[];
5022
+ /**
5023
+ * Registry name containing container images.
5024
+ */
5025
+ registry?: string;
5026
+ }
5027
+
4865
5028
  /**
4866
5029
  * Cookie step of Browser Monitor.
4867
5030
  */
@@ -6872,7 +7035,11 @@ export declare class EventsClient {
6872
7035
  /**
6873
7036
  * Lists all event properties
6874
7037
  *
6875
- * **Required scope:** environment-api:events:read<br/>**One of the following permissions is required:**
7038
+ * **One of the following scopes is required:**
7039
+ * + storage:events:read
7040
+ * + environment-api:events:read
7041
+ *
7042
+ * <br/>**One of the following permissions is required:**
6876
7043
  * + environment:roles:viewer
6877
7044
  * + storage:events:read
6878
7045
  *
@@ -6908,7 +7075,11 @@ export declare class EventsClient {
6908
7075
  /**
6909
7076
  * Gets the details of an event property
6910
7077
  *
6911
- * **Required scope:** environment-api:events:read<br/>**One of the following permissions is required:**
7078
+ * **One of the following scopes is required:**
7079
+ * + storage:events:read
7080
+ * + environment-api:events:read
7081
+ *
7082
+ * <br/>**One of the following permissions is required:**
6912
7083
  * + environment:roles:viewer
6913
7084
  * + storage:events:read
6914
7085
  *
@@ -6933,7 +7104,11 @@ export declare class EventsClient {
6933
7104
  /**
6934
7105
  * Lists all event types
6935
7106
  *
6936
- * **Required scope:** environment-api:events:read<br/>**One of the following permissions is required:**
7107
+ * **One of the following scopes is required:**
7108
+ * + storage:events:read
7109
+ * + environment-api:events:read
7110
+ *
7111
+ * <br/>**One of the following permissions is required:**
6937
7112
  * + environment:roles:viewer
6938
7113
  * + storage:events:read
6939
7114
  *
@@ -6969,7 +7144,11 @@ export declare class EventsClient {
6969
7144
  /**
6970
7145
  * Gets the properties of an event type
6971
7146
  *
6972
- * **Required scope:** environment-api:events:read<br/>**One of the following permissions is required:**
7147
+ * **One of the following scopes is required:**
7148
+ * + storage:events:read
7149
+ * + environment-api:events:read
7150
+ *
7151
+ * <br/>**One of the following permissions is required:**
6973
7152
  * + environment:roles:viewer
6974
7153
  * + storage:events:read
6975
7154
  *
@@ -7118,12 +7297,13 @@ export declare class EventsClient {
7118
7297
  * Ingests a custom event
7119
7298
  *
7120
7299
  * **One of the following scopes is required:**
7300
+ * + openpipeline:events.davis:ingest
7121
7301
  * + storage:events:write
7122
7302
  * + environment-api:events:write
7123
7303
  *
7124
7304
  * <br/>**One of the following permissions is required:**
7125
7305
  * + environment:roles:viewer
7126
- * + storage:events:write
7306
+ * + openpipeline:events.davis:ingest
7127
7307
  *
7128
7308
  * <br/><br/>The ingestion of custom events is subject to licensing (see [licensing documentation](https://www.dynatrace.com/support/help/shortlink/dps-events)).
7129
7309
  *
@@ -7729,6 +7909,10 @@ export declare class Extensions_2_0Client {
7729
7909
  * + environment:roles:manage-settings
7730
7910
  * + extensions:definitions:read
7731
7911
  *
7912
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
7913
+ *
7914
+ * @deprecated
7915
+ *
7732
7916
  * @returns {Promise<ExtensionList>} Success
7733
7917
  *
7734
7918
  * @example <caption>Code example</caption>
@@ -7766,6 +7950,10 @@ export declare class Extensions_2_0Client {
7766
7950
  * + environment:roles:manage-settings
7767
7951
  * + extensions:definitions:write
7768
7952
  *
7953
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
7954
+ *
7955
+ * @deprecated
7956
+ *
7769
7957
  * @returns {Promise<ExtensionUploadResponseDto>} The extension is valid | Success. The extension 2.0 has been uploaded.
7770
7958
  *
7771
7959
  * @example <caption>Code example</caption>
@@ -7788,7 +7976,9 @@ export declare class Extensions_2_0Client {
7788
7976
  /**
7789
7977
  * Lists all Java processes discovered in the environment that are available for JMX metric collection. | maturity=EARLY_ADOPTER
7790
7978
  *
7791
- * **Required scope:** extensions:discovery.jmx:read
7979
+ * **Required scope:** extensions:discovery.jmx:read<br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
7980
+ *
7981
+ * @deprecated
7792
7982
  *
7793
7983
  * @returns {Promise<JavaProcessContainerList[]>} Success
7794
7984
  *
@@ -7809,7 +7999,9 @@ export declare class Extensions_2_0Client {
7809
7999
  /**
7810
8000
  * Retrieves details of a specified Java process discovered in the environment for JMX metric collection. | maturity=EARLY_ADOPTER
7811
8001
  *
7812
- * **Required scope:** extensions:discovery.jmx:read
8002
+ * **Required scope:** extensions:discovery.jmx:read<br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8003
+ *
8004
+ * @deprecated
7813
8005
  *
7814
8006
  * @returns {Promise<JavaProcessDetails>} Success
7815
8007
  *
@@ -7833,7 +8025,9 @@ export declare class Extensions_2_0Client {
7833
8025
  /**
7834
8026
  * Lists all Java processes discovered in the environment that are available for PMI metric collection. | maturity=EARLY_ADOPTER
7835
8027
  *
7836
- * **Required scope:** extensions:discovery.pmi:read
8028
+ * **Required scope:** extensions:discovery.pmi:read<br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8029
+ *
8030
+ * @deprecated
7837
8031
  *
7838
8032
  * @returns {Promise<JavaProcessContainerList[]>} Success
7839
8033
  *
@@ -7854,7 +8048,9 @@ export declare class Extensions_2_0Client {
7854
8048
  /**
7855
8049
  * Retrieves details of a specified Java process discovered in the environment for PMI metric collection. | maturity=EARLY_ADOPTER
7856
8050
  *
7857
- * **Required scope:** extensions:discovery.pmi:read
8051
+ * **Required scope:** extensions:discovery.pmi:read<br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8052
+ *
8053
+ * @deprecated
7858
8054
  *
7859
8055
  * @returns {Promise<PmiProcessDetails>} Success
7860
8056
  *
@@ -7882,6 +8078,10 @@ export declare class Extensions_2_0Client {
7882
8078
  * + environment:roles:manage-settings
7883
8079
  * + extensions:definitions:read
7884
8080
  *
8081
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8082
+ *
8083
+ * @deprecated
8084
+ *
7885
8085
  * @returns {Promise<ExtensionInfoList>} Success
7886
8086
  *
7887
8087
  * @example <caption>Code example</caption>
@@ -7920,6 +8120,10 @@ export declare class Extensions_2_0Client {
7920
8120
  * + environment:roles:manage-settings
7921
8121
  * + extensions:definitions:read
7922
8122
  *
8123
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8124
+ *
8125
+ * @deprecated
8126
+ *
7923
8127
  * @returns {Promise<SchemasList>} Success
7924
8128
  *
7925
8129
  * @example <caption>Code example</caption>
@@ -7942,6 +8146,10 @@ export declare class Extensions_2_0Client {
7942
8146
  * + environment:roles:manage-settings
7943
8147
  * + extensions:definitions:read
7944
8148
  *
8149
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8150
+ *
8151
+ * @deprecated
8152
+ *
7945
8153
  * @returns {Promise<SchemaFiles | Binary>} Success
7946
8154
  *
7947
8155
  * @example <caption>Code example</caption>
@@ -7974,6 +8182,10 @@ export declare class Extensions_2_0Client {
7974
8182
  * + environment:roles:manage-settings
7975
8183
  * + extensions:definitions:read
7976
8184
  *
8185
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8186
+ *
8187
+ * @deprecated
8188
+ *
7977
8189
  * @returns {Promise<JsonNode>} Success
7978
8190
  *
7979
8191
  * @example <caption>Code example</caption>
@@ -8001,6 +8213,10 @@ export declare class Extensions_2_0Client {
8001
8213
  * + environment:roles:manage-settings
8002
8214
  * + extensions:definitions:read
8003
8215
  *
8216
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8217
+ *
8218
+ * @deprecated
8219
+ *
8004
8220
  * @returns {Promise<ExtensionList>} Success
8005
8221
  *
8006
8222
  * @example <caption>Code example</caption>
@@ -8041,6 +8257,10 @@ export declare class Extensions_2_0Client {
8041
8257
  * + environment:roles:manage-settings
8042
8258
  * + extensions:definitions:write
8043
8259
  *
8260
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8261
+ *
8262
+ * @deprecated
8263
+ *
8044
8264
  * @returns {Promise<RegisteredExtensionResultDto>} Success. The extension version is installed and active. If the requested version was already the active environment configuration, this is an idempotent no-op (no backend state changes).
8045
8265
  *
8046
8266
  * @example <caption>Code example</caption>
@@ -8067,6 +8287,10 @@ export declare class Extensions_2_0Client {
8067
8287
  * + environment:roles:manage-settings
8068
8288
  * + extensions:definitions:read
8069
8289
  *
8290
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8291
+ *
8292
+ * @deprecated
8293
+ *
8070
8294
  * @returns {Promise<ExtensionEnvironmentConfigurationVersion>} Success
8071
8295
  *
8072
8296
  * @example <caption>Code example</caption>
@@ -8093,6 +8317,10 @@ export declare class Extensions_2_0Client {
8093
8317
  * + environment:roles:manage-settings
8094
8318
  * + extensions:definitions:write
8095
8319
  *
8320
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8321
+ *
8322
+ * @deprecated
8323
+ *
8096
8324
  * @returns {Promise<ExtensionEnvironmentConfigurationVersion>} Success. Environment configuration updated.
8097
8325
  *
8098
8326
  * @example <caption>Code example</caption>
@@ -8120,6 +8348,10 @@ export declare class Extensions_2_0Client {
8120
8348
  * + environment:roles:manage-settings
8121
8349
  * + extensions:definitions:write
8122
8350
  *
8351
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8352
+ *
8353
+ * @deprecated
8354
+ *
8123
8355
  * @returns {Promise<ExtensionEnvironmentConfigurationVersion>} Success. Environment configuration created. If the requested version was already active, this is an idempotent no-op (no backend state changes).
8124
8356
  *
8125
8357
  * @example <caption>Code example</caption>
@@ -8147,6 +8379,10 @@ export declare class Extensions_2_0Client {
8147
8379
  * + environment:roles:manage-settings
8148
8380
  * + extensions:definitions:write
8149
8381
  *
8382
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8383
+ *
8384
+ * @deprecated
8385
+ *
8150
8386
  * @returns {Promise<ExtensionEnvironmentConfigurationVersion>} Success. Environment configuration deactivated.
8151
8387
  *
8152
8388
  * @example <caption>Code example</caption>
@@ -8173,6 +8409,10 @@ export declare class Extensions_2_0Client {
8173
8409
  * + environment:roles:manage-settings
8174
8410
  * + extensions:definitions:read
8175
8411
  *
8412
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8413
+ *
8414
+ * @deprecated
8415
+ *
8176
8416
  * @returns {Promise<ExtensionAssetsDto>} Success
8177
8417
  *
8178
8418
  * @example <caption>Code example</caption>
@@ -8199,6 +8439,10 @@ export declare class Extensions_2_0Client {
8199
8439
  * + environment:roles:manage-settings
8200
8440
  * + extensions:definitions:read
8201
8441
  *
8442
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8443
+ *
8444
+ * @deprecated
8445
+ *
8202
8446
  * @returns {Promise<AlertTemplateDto>} Success
8203
8447
  *
8204
8448
  * @example <caption>Code example</caption>
@@ -8226,6 +8470,10 @@ export declare class Extensions_2_0Client {
8226
8470
  * + environment:roles:manage-settings
8227
8471
  * + extensions:configurations:read
8228
8472
  *
8473
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8474
+ *
8475
+ * @deprecated
8476
+ *
8229
8477
  * @returns {Promise<ExtensionMonitoringConfigurationsList>} Success
8230
8478
  *
8231
8479
  * @example <caption>Code example</caption>
@@ -8268,6 +8516,10 @@ export declare class Extensions_2_0Client {
8268
8516
  * + environment:roles:manage-settings
8269
8517
  * + extensions:configurations:write
8270
8518
  *
8519
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8520
+ *
8521
+ * @deprecated
8522
+ *
8271
8523
  * @returns {Promise<MonitoringConfigurationResponse[] | (MonitoringConfigurationResponse | ErrorEnvelope)[]>} Success | Multi-Status, if not all requests resulted in the same status
8272
8524
  *
8273
8525
  * @example <caption>Code example</caption>
@@ -8302,6 +8554,10 @@ export declare class Extensions_2_0Client {
8302
8554
  * + environment:roles:manage-settings
8303
8555
  * + extensions:configurations:read
8304
8556
  *
8557
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8558
+ *
8559
+ * @deprecated
8560
+ *
8305
8561
  * @returns {Promise<ExtensionStatusWithIdDto[]>} Success
8306
8562
  *
8307
8563
  * @example <caption>Code example</caption>
@@ -8327,6 +8583,10 @@ export declare class Extensions_2_0Client {
8327
8583
  * + environment:roles:manage-settings
8328
8584
  * + extensions:configurations:read
8329
8585
  *
8586
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8587
+ *
8588
+ * @deprecated
8589
+ *
8330
8590
  * @returns {Promise<ExtensionMonitoringConfiguration>} Success
8331
8591
  *
8332
8592
  * @example <caption>Code example</caption>
@@ -8354,6 +8614,10 @@ export declare class Extensions_2_0Client {
8354
8614
  * + environment:roles:manage-settings
8355
8615
  * + extensions:configurations:write
8356
8616
  *
8617
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8618
+ *
8619
+ * @deprecated
8620
+ *
8357
8621
  * @returns {Promise<MonitoringConfigurationResponse>} Success
8358
8622
  *
8359
8623
  * @example <caption>Code example</caption>
@@ -8384,6 +8648,10 @@ export declare class Extensions_2_0Client {
8384
8648
  * + environment:roles:manage-settings
8385
8649
  * + extensions:configurations:write
8386
8650
  *
8651
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8652
+ *
8653
+ * @deprecated
8654
+ *
8387
8655
  * @example <caption>Code example</caption>
8388
8656
  * import { extensions_2_0Client } from "@dynatrace-sdk/client-classic-environment-v2";
8389
8657
  *
@@ -8410,6 +8678,10 @@ export declare class Extensions_2_0Client {
8410
8678
  * + environment:roles:manage-settings
8411
8679
  * + extensions:configuration.actions:write
8412
8680
  *
8681
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8682
+ *
8683
+ * @deprecated
8684
+ *
8413
8685
  * @returns {Promise<ExecuteActionsResponse>} Accepted. Response doesn't have a body.
8414
8686
  *
8415
8687
  * @example <caption>Code example</caption>
@@ -8442,6 +8714,10 @@ export declare class Extensions_2_0Client {
8442
8714
  * + environment:roles:manage-settings
8443
8715
  * + extensions:configurations:read
8444
8716
  *
8717
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8718
+ *
8719
+ * @deprecated
8720
+ *
8445
8721
  * @returns {Promise<AuditLog>} Success
8446
8722
  *
8447
8723
  * @example <caption>Code example</caption>
@@ -8527,6 +8803,10 @@ export declare class Extensions_2_0Client {
8527
8803
  * + environment:roles:manage-settings
8528
8804
  * + extensions:configurations:read
8529
8805
  *
8806
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8807
+ *
8808
+ * @deprecated
8809
+ *
8530
8810
  * @returns {Promise<ExtensionStatusDto>} Success
8531
8811
  *
8532
8812
  * @example <caption>Code example</caption>
@@ -8554,6 +8834,10 @@ export declare class Extensions_2_0Client {
8554
8834
  * + environment:roles:manage-settings
8555
8835
  * + extensions:definitions:read
8556
8836
  *
8837
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8838
+ *
8839
+ * @deprecated
8840
+ *
8557
8841
  * @returns {Promise<Extension | Binary>} Success
8558
8842
  *
8559
8843
  * @example <caption>Code example</caption>
@@ -8589,6 +8873,10 @@ export declare class Extensions_2_0Client {
8589
8873
  * + environment:roles:manage-settings
8590
8874
  * + extensions:definitions:write
8591
8875
  *
8876
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8877
+ *
8878
+ * @deprecated
8879
+ *
8592
8880
  * @returns {Promise<Extension>} Success. The extension 2.0 version has been deleted.
8593
8881
  *
8594
8882
  * @example <caption>Code example</caption>
@@ -8616,6 +8904,10 @@ export declare class Extensions_2_0Client {
8616
8904
  * + environment:roles:manage-settings
8617
8905
  * + extensions:configurations:write
8618
8906
  *
8907
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8908
+ *
8909
+ * @deprecated
8910
+ *
8619
8911
  * @returns {Promise<ActiveGateGroupsInfoDto>} Success
8620
8912
  *
8621
8913
  * @example <caption>Code example</caption>
@@ -8648,6 +8940,10 @@ export declare class Extensions_2_0Client {
8648
8940
  * + environment:roles:manage-settings
8649
8941
  * + extensions:definitions:read
8650
8942
  *
8943
+ * <br/><br/>Deprecated since version 1.342. Use the successor API `/platform/extensions/v2` instead.
8944
+ *
8945
+ * @deprecated
8946
+ *
8651
8947
  * @returns {Promise<SchemaDefinitionRestDto>} Success
8652
8948
  *
8653
8949
  * @example <caption>Code example</caption>
@@ -9088,6 +9384,52 @@ export declare enum FilterType {
9088
9384
  Suffix = "suffix"
9089
9385
  }
9090
9386
 
9387
+ /**
9388
+ * Get data of container images
9389
+ */
9390
+ export declare class FleetManagementContainerImagesClient {
9391
+ private httpClient;
9392
+ private shouldTransformDates;
9393
+ /**
9394
+ * @param {HttpClient} httpClientImplementation - You can provide custom http client as a parameter to constructor of a FleetManagementContainerImagesClient. Custom http client should implement {HttpClient} interface.
9395
+ * @param {ApiClientOptions} [options] - Optional configuration for SDK Client.
9396
+ * @example
9397
+ * const fleetManagementContainerImagesClientNodeJs = new FleetManagementContainerImagesClient(yourCustomImplementation);
9398
+ */
9399
+ constructor(httpClientImplementation: HttpClient, options?: ApiClientOptions);
9400
+ /**
9401
+ * Returns container images data
9402
+ *
9403
+ * **One of the following scopes is required:**
9404
+ * + environment-api:deployment:download
9405
+ * + fleet-management:container-images:read
9406
+ *
9407
+ * <br/>**One of the following permissions is required:**
9408
+ * + environment:roles:agent-install
9409
+ * + fleet-management:container-images:read
9410
+ *
9411
+ * @returns {Promise<ContainerImageData>} Container images data returned
9412
+ *
9413
+ * @example <caption>Code example</caption>
9414
+ * import { fleetManagementContainerImagesClient } from "@dynatrace-sdk/client-classic-environment-v2";
9415
+ *
9416
+ * const data =
9417
+ * await fleetManagementContainerImagesClient.getContainerImages();
9418
+ *
9419
+ * @throws {ErrorEnvelopeError} Failed. The input is invalid. | Internal server error. | Client side error. | Server side error.
9420
+ * @throws {InvalidResponseError}
9421
+ * @throws {ApiClientError}
9422
+ * @throws {ClientRequestError}
9423
+ */
9424
+ getContainerImages(config?: {
9425
+ /** Registry name containing the container images. For a list of registries, see [Dynatrace Documentation](https://dt-url.net/mf239va) */ registry?: string;
9426
+ /** Partial registry name filter. Returns images for the first registry whose name contains this value. Ignored when 'registry' is provided. */ registryFilter?: string;
9427
+ abortSignal?: AbortSignal_2;
9428
+ }): Promise<ContainerImageData>;
9429
+ }
9430
+
9431
+ export declare const fleetManagementContainerImagesClient: FleetManagementContainerImagesClient;
9432
+
9091
9433
  /**
9092
9434
  * JS framework options of a JS Agent.
9093
9435
  */
@@ -10971,7 +11313,11 @@ export declare class LogsClient {
10971
11313
  /**
10972
11314
  * Pushes log records to Dynatrace
10973
11315
  *
10974
- * **Required scope:** storage:logs:write<br/><br/>Ingested logs are stored in Dynatrace.
11316
+ * **One of the following scopes is required:**
11317
+ * + openpipeline:logs:ingest
11318
+ * + storage:logs:write
11319
+ *
11320
+ * <br/><br/>Ingested logs are stored in Dynatrace.
10975
11321
  *
10976
11322
  * If you are using this API endpoint on an Environment ActiveGate, the Log Analytics Collector module must be enabled.
10977
11323
  * This endpoint is not available on Containerized ActiveGate (including Kubernetes deployments).
@@ -11866,7 +12212,9 @@ export declare class MetricsClient {
11866
12212
  /**
11867
12213
  * Pushes metric data points to Dynatrace
11868
12214
  *
11869
- * **Required scope:** storage:metrics:write
12215
+ * **One of the following scopes is required:**
12216
+ * + storage:metrics:write
12217
+ * + openpipeline:metrics:ingest
11870
12218
  *
11871
12219
  * @returns {Promise<ValidationResponse>} The provided metric data points are accepted and will be processed in the background.
11872
12220
  *
@@ -15327,7 +15675,13 @@ export declare class ProblemsClient {
15327
15675
  /**
15328
15676
  * Closes the specified problem and adds a closing comment on it
15329
15677
  *
15330
- * **Required scope:** environment-api:problems:write<br/>**Required permission:** environment:roles:viewer
15678
+ * **One of the following scopes is required:**
15679
+ * + openpipeline:events.davis:ingest
15680
+ * + environment-api:problems:write
15681
+ *
15682
+ * <br/>**One of the following permissions is required:**
15683
+ * + environment:roles:viewer
15684
+ * + openpipeline:events.davis:ingest
15331
15685
  *
15332
15686
  * @returns {Promise<ProblemCloseResult | void>} Success
15333
15687
  *
@@ -21626,10 +21980,6 @@ export declare interface SyntheticBrowserMonitorRequest {
21626
21980
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
21627
21981
  */
21628
21982
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
21629
- /**
21630
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
21631
- */
21632
- securityContext?: string[];
21633
21983
  /**
21634
21984
  * The steps of the monitor.
21635
21985
  */
@@ -21717,10 +22067,6 @@ export declare interface SyntheticBrowserMonitorResponse {
21717
22067
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
21718
22068
  */
21719
22069
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
21720
- /**
21721
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
21722
- */
21723
- securityContext?: string[];
21724
22070
  /**
21725
22071
  * The steps of the monitor.
21726
22072
  */
@@ -21738,7 +22084,7 @@ export declare interface SyntheticBrowserMonitorResponse {
21738
22084
  /**
21739
22085
  * Monitor type.
21740
22086
  */
21741
- type: 'MULTI_PROTOCOL' | 'BROWSER';
22087
+ type: 'MULTI_PROTOCOL' | 'BROWSER' | 'HTTP';
21742
22088
  }
21743
22089
 
21744
22090
  /**
@@ -21748,7 +22094,8 @@ export declare interface SyntheticBrowserMonitorResponse {
21748
22094
  */
21749
22095
  export declare enum SyntheticBrowserMonitorResponseType {
21750
22096
  MultiProtocol = "MULTI_PROTOCOL",
21751
- Browser = "BROWSER"
22097
+ Browser = "BROWSER",
22098
+ Http = "HTTP"
21752
22099
  }
21753
22100
 
21754
22101
  /**
@@ -22007,10 +22354,6 @@ export declare interface SyntheticHttpMonitorRequest {
22007
22354
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
22008
22355
  */
22009
22356
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
22010
- /**
22011
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
22012
- */
22013
- securityContext?: string[];
22014
22357
  /**
22015
22358
  * The steps of the monitor.
22016
22359
  */
@@ -22098,10 +22441,6 @@ export declare interface SyntheticHttpMonitorResponse {
22098
22441
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
22099
22442
  */
22100
22443
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
22101
- /**
22102
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
22103
- */
22104
- securityContext?: string[];
22105
22444
  /**
22106
22445
  * The steps of the monitor.
22107
22446
  */
@@ -22119,7 +22458,7 @@ export declare interface SyntheticHttpMonitorResponse {
22119
22458
  /**
22120
22459
  * Monitor type.
22121
22460
  */
22122
- type: 'MULTI_PROTOCOL' | 'BROWSER';
22461
+ type: 'MULTI_PROTOCOL' | 'BROWSER' | 'HTTP';
22123
22462
  }
22124
22463
 
22125
22464
  /**
@@ -22129,7 +22468,8 @@ export declare interface SyntheticHttpMonitorResponse {
22129
22468
  */
22130
22469
  export declare enum SyntheticHttpMonitorResponseType {
22131
22470
  MultiProtocol = "MULTI_PROTOCOL",
22132
- Browser = "BROWSER"
22471
+ Browser = "BROWSER",
22472
+ Http = "HTTP"
22133
22473
  }
22134
22474
 
22135
22475
  /**
@@ -22897,9 +23237,9 @@ export declare interface SyntheticMonitorPerformanceThresholdDto {
22897
23237
  */
22898
23238
  threshold: number;
22899
23239
  /**
22900
- * Type of performance threshold.
23240
+ * Type of performance threshold
22901
23241
  */
22902
- type?: 'MONITOR' | 'STEP';
23242
+ type?: 'STEP' | 'MONITOR';
22903
23243
  /**
22904
23244
  * Number of violating request executions in analyzed sliding window.
22905
23245
  */
@@ -22918,13 +23258,13 @@ export declare enum SyntheticMonitorPerformanceThresholdDtoAggregation {
22918
23258
  }
22919
23259
 
22920
23260
  /**
22921
- * Type of performance threshold.
23261
+ * Type of performance threshold
22922
23262
  *
22923
23263
  * @deprecated Use literal values.
22924
23264
  */
22925
23265
  export declare enum SyntheticMonitorPerformanceThresholdDtoType {
22926
- Monitor = "MONITOR",
22927
- Step = "STEP"
23266
+ Step = "STEP",
23267
+ Monitor = "MONITOR"
22928
23268
  }
22929
23269
 
22930
23270
  /**
@@ -22966,22 +23306,26 @@ export declare interface SyntheticMonitorSummaryDto {
22966
23306
  /**
22967
23307
  * The entity id of the monitor.
22968
23308
  */
22969
- entityId: string;
23309
+ entityId?: string;
22970
23310
  /**
22971
23311
  * The name of the monitor.
22972
23312
  */
22973
- name: string;
22974
- type: 'BROWSER' | 'HTTP' | 'MULTI_PROTOCOL' | 'THIRD_PARTY';
23313
+ name?: string;
23314
+ /**
23315
+ * The type of the monitor.
23316
+ */
23317
+ type?: 'MULTI_PROTOCOL' | 'BROWSER' | 'HTTP';
22975
23318
  }
22976
23319
 
22977
23320
  /**
23321
+ * The type of the monitor.
23322
+ *
22978
23323
  * @deprecated Use literal values.
22979
23324
  */
22980
23325
  export declare enum SyntheticMonitorSummaryDtoType {
22981
- Browser = "BROWSER",
22982
- Http = "HTTP",
22983
23326
  MultiProtocol = "MULTI_PROTOCOL",
22984
- ThirdParty = "THIRD_PARTY"
23327
+ Browser = "BROWSER",
23328
+ Http = "HTTP"
22985
23329
  }
22986
23330
 
22987
23331
  /**
@@ -23016,10 +23360,6 @@ export declare interface SyntheticMultiProtocolMonitorRequest {
23016
23360
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
23017
23361
  */
23018
23362
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
23019
- /**
23020
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
23021
- */
23022
- securityContext?: string[];
23023
23363
  /**
23024
23364
  * The steps of the monitor.
23025
23365
  */
@@ -23091,10 +23431,6 @@ export declare interface SyntheticMultiProtocolMonitorResponse {
23091
23431
  * Primary Grail tags as a list of key-value pairs. Up to 10 tags. Those fields are only available for SaaS and not for Managed.
23092
23432
  */
23093
23433
  primaryGrailTags?: SyntheticMonitorPrimaryGrailTagDto[];
23094
- /**
23095
- * [FEATURE DISABLED] Security context as a list of strings. Up to 10 values, max 200 characters per value. Those fields are only available for SaaS and not for Managed.
23096
- */
23097
- securityContext?: string[];
23098
23434
  /**
23099
23435
  * The steps of the monitor.
23100
23436
  */
@@ -23112,7 +23448,7 @@ export declare interface SyntheticMultiProtocolMonitorResponse {
23112
23448
  /**
23113
23449
  * Monitor type.
23114
23450
  */
23115
- type: 'MULTI_PROTOCOL' | 'BROWSER';
23451
+ type: 'MULTI_PROTOCOL' | 'BROWSER' | 'HTTP';
23116
23452
  }
23117
23453
 
23118
23454
  /**
@@ -23122,7 +23458,8 @@ export declare interface SyntheticMultiProtocolMonitorResponse {
23122
23458
  */
23123
23459
  export declare enum SyntheticMultiProtocolMonitorResponseType {
23124
23460
  MultiProtocol = "MULTI_PROTOCOL",
23125
- Browser = "BROWSER"
23461
+ Browser = "BROWSER",
23462
+ Http = "HTTP"
23126
23463
  }
23127
23464
 
23128
23465
  /**
@@ -23238,9 +23575,7 @@ export declare class SyntheticNetworkAvailabilityMonitorsClient {
23238
23575
  /**
23239
23576
  * Creates a synthetic monitor definition. | maturity=EARLY_ADOPTER
23240
23577
  *
23241
- * **Required scope:** environment-api:synthetic-monitors:write<br/>**One of the following permissions is required:**
23242
- * + environment:roles:manage-settings
23243
- * + synthetic:monitors:write
23578
+ * **Required scope:** environment-api:synthetic-monitors:write<br/>**Required permission:** environment:roles:manage-settings
23244
23579
  *
23245
23580
  * @returns {Promise<MonitorEntityIdDto>} Success
23246
23581
  *
@@ -24910,6 +25245,30 @@ export declare enum UpdatePermissionsRequestPermissionsItem {
24910
25245
  W = "w"
24911
25246
  }
24912
25247
 
25248
+ /**
25249
+ * Basic information about one maintenance window
25250
+ */
25251
+ export declare interface UpdateWindow {
25252
+ /**
25253
+ * Identifier of maintenance window
25254
+ */
25255
+ id: string;
25256
+ /**
25257
+ * The name of maintenance window
25258
+ */
25259
+ name?: string;
25260
+ }
25261
+
25262
+ /**
25263
+ * Basic information about all configured update windows
25264
+ */
25265
+ export declare interface UpdateWindowsConfig {
25266
+ /**
25267
+ * List of update windows when the OneAgent update can start. If there is no value and update should be performed, the update will start at earliest convenience.
25268
+ */
25269
+ windows: UpdateWindow[];
25270
+ }
25271
+
24913
25272
  export declare interface UploadJavaScriptMappingFileAliasBody {
24914
25273
  /**
24915
25274
  * JavaScript mapping file to upload.