You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/).
5
5
6
+
## 2.69.0 - 2023-08-29
7
+
### Added
8
+
- Support for creating and updating network monitors in the Application Performance Monitoring Synthetics service
9
+
- Support for integration of GoldenGate service for replication in the Database Migration Service
10
+
- Support for displaying resource usage information on autonomous container database and cloud autonomous vm cluster get operations in the Database service
11
+
- Support for FastConnect Media Access Control Security (MACSec) fail open option in the Network Monitoring service
12
+
- Support for generic bare metal types and configuration maps in compute instance platform configuration in the Compute service
13
+
- Support for encrypted FastConnect in the Network Monitoring service
14
+
- Support for new parameters on customer premises equipment and virtual circuit create operations in the Network Monitoring service
15
+
- Support for virtual circuit associated tunnels in the Network Monitoring service
16
+
- Support for additional parameters on dynamic routing gateway create and update operations in the Network Monitoring service
17
+
- Support for assigning an IPv6 address to a compute instance during instance launch or secondary VNIC attach in the Compute service
18
+
19
+
### Breaking Changes
20
+
- The models `AnalyticsCluster`, `AddAnalyticsClusterDetails`, `AnalyticsClusterMemoryEstimate`, `AnalyticsClusterMemoryEstimateStatus`, `AnalyticsClusterNode`, `AnalyticsClusterSchemaMemoryEstimate`, `AnalyticsClusterSummary`, `AnalyticsClusterTableMemoryEstimate`, `UpdateAnalyticsClusterDetails` were removed in the MySQL Database service
21
+
- The request classes `AddAnalyticsClusterRequest`, `DeleteAnalyticsClusterRequest`, `GenerateAnalyticsClusterMemoryEstimateRequest`, `GetAnalyticsClusterRequest`, `RestartAnalyticsClusterRequest`, `StartAnalyticsClusterRequest`, `StopAnalyticsClusterRequest`, `UpdateAnalyticsClusterRequest` were removed in the MySQL Database service
22
+
- The response classes `DeleteAnalyticsClusterResponse`, `GetAnalyticsClusterMemoryEstimateResponse`, `RestartAnalyticsClusterResponse`, `StartAnalyticsClusterResponse`, `StopAnalyticsClusterResponse`, `UpdateAnalyticsClusterResponse` were removed in the MySQL Database service
23
+
- The properties `IsAnalyticsClusterAttached` and `AnalyticsCluster` were removed from `DbSystem` and `DbSystemSummary` models in the MySQL Database service
24
+
- The enum member `ANALYTICSCLUSTER` was removed from the enum `IsSupportedForEnum` in the models `ShapeSummary` and request class `ListShapesRequest` in the MySQL Database service
25
+
- The enum members `ADD_ANALYTICS_CLUSTER`, `UPDATE_ANALYTICS_CLUSTER`, `DELETE_ANALYTICS_CLUSTER`, `START_ANALYTICS_CLUSTER`, `STOP_ANALYTICS_CLUSTER`, `RESTART_ANALYTICS_CLUSTER`, `GENERATE_ANALYTICS_CLUSTER_MEMORY_ESTIMATE` were removed from the enum `WorkRequestOperationType` in the MySQL Database service
26
+
- The property `isAnalyticsClusterAttached` was removed from the model `ListDbSystemsRequest` in the MySQL Database service
27
+
- The operations `addAnalyticsCluster`, `deleteAnalyticsCluster`, `generateAnalyticsClusterMemoryEstimate`, `getAnalyticsCluster`, `getAnalyticsClusterMemoryEstimate`, `restartAnalyticsCluster`, `startAnalyticsCluster`, `stopAnalyticsCluster`, `updateAnalyticsCluster` were removed from the `DbSystemClient` in the MySQL Database service
* For BROWSER and REST monitor types, target is mandatory.
66
66
* If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint.
67
67
* If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.
68
+
* For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
* For BROWSER and REST monitor types, target is mandatory.
76
76
* If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint.
77
77
* If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.
78
+
* For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
Copy file name to clipboardExpand all lines: lib/apmsynthetics/lib/model/monitor.ts
+3-1
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,7 @@ export interface Monitor {
75
75
* For BROWSER and REST monitor types, target is mandatory.
76
76
* If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint.
77
77
* If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.
78
+
* For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
* Application Performance Monitoring Synthetic Monitoring API
3
+
* Use the Application Performance Monitoring Synthetic Monitoring API to query synthetic scripts and monitors. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
* OpenAPI spec version: 20200630
5
+
*
6
+
*
7
+
* NOTE: This class is auto generated by OracleSDKGenerator.
8
+
* Do not edit the class manually.
9
+
*
10
+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+
*/
13
+
14
+
import*asmodelfrom"../model";
15
+
importcommon= require("oci-common");
16
+
17
+
/**
18
+
* Request configuration details for the NETWORK monitor type.
* For BROWSER and REST monitor types, target is mandatory.
62
62
* If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint.
63
63
* If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.
64
+
* For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
0 commit comments