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
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,33 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
7
+
## 65.54.0 - 2023-12-04
8
+
### Added
9
+
- Support for calling Oracle Cloud Infrastructure services in the eu-dcc-zurich-1 and the sa-bogota-1 region
10
+
- Support for managing certificates of target Servers in the Golden Gate service
11
+
- Support for AWR Hub Snapshot ingest endpoints in the Operations Insights service
12
+
- Support for reducing false positives in the Application Dependency Management service
13
+
- Support for ARM shapes in the Data Science service
14
+
- Support for new optional parameters in the upload discovery data API in the Usage service
15
+
- Support for multiple clusters in a Software-Defined Data Centers (SDDCs) in the VMWare Solution service
16
+
- Support for No/Zero days backup in Autonomous Container Database in the Database service
17
+
- Support for provisioning a VM Cluster with a choice of Exadata image version in the Database service
18
+
- Support for updating ocpu/ecpu count, local storage, ACD count and Exadata storage on Cloud Autonomous VM Cluster and Autonomous VM Cluster in the Database service
19
+
- Support for serial console history in the Database service
20
+
- Support for Oracle Linux 8 version database system in the Database service
21
+
22
+
### Breaking
23
+
- Parameters `SddcId`, `CurrentSku`, `NextSku`, were renamed to `ClusterId`, `CurrentCommitment`, `NextCommitment` in models `CreateEsxiHostDetails`, `EsxiHost` and `EsxiHostSummary` in the VMWare Solution service
24
+
- Parameter `FailedEsxiHostId` was removed from `CreateEsxiHostDetails` model in the VMWare Solution service
25
+
- Parameter `NonUpgradedEsxiHostId` was renamed to `EsxiSoftwareVersion` in `CreateEsxiHostDetails` model in the VMWare Solution service
26
+
- Parameter `EsxiHostsCount` was removed from `CreateEsxiHostDetails` model in the VMWare Solution service
27
+
- Parameters `ProvisioningSubnetId`, `VsphereVlanId`, `VmotionVlanId`, `VsanVlanId`, `NsxVTepVlanId`, `NsxEdgeVTepVlanId`, `NsxEdgeUplink1VlanId`, `NsxEdgeUplink2VlanId`, `InstanceDisplayNamePrefix`, `InitialSku`, `IsHcxEnabled`, `HcxVlanId`, `IsHcxEnterpriseEnabled` were removed from `CreateSddcDetails` model in the VMWare Solution service
28
+
- Parameters `VsphereVlanId`, `VmotionVlanId`, `VsanVlanId`, `NsxVTepVlanId`, `NsxEdgeVTepVlanId`, `NsxEdgeUplink1VlanId`, `NsxEdgeUplink2VlanId`, `ReplicationVlanId`, `ProvisioningVlanId`, `HcxVlanId` were removed from `UpdateSddcDetails` model in the VMWare Solution service
29
+
- Parameters `SupportedSddcTypes` and `IsSupportMonthlySku` were removed from `SupportedHostShapeSummary` model in the VMWare Solution service
30
+
- Parameter `ComputeAvailabilityDomain` was removed from `Sddc` and `SddcSummary` models in the VMWare Solution service
31
+
- Parameter `SddcType` was removed from `ListSupportedHostShapesRequest` model in the VMWare Solution service
// Copyright (c) 2016, 2018, 2023, Oracle and/or its affiliates. All rights reserved.
2
+
// 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.
3
+
// Code generated. DO NOT EDIT.
4
+
5
+
// Application Dependency Management API
6
+
//
7
+
// Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see ADM (https://docs.cloud.oracle.com/Content/application-dependency-management/home.htm).
8
+
//
9
+
10
+
package adm
11
+
12
+
import (
13
+
"encoding/json"
14
+
"fmt"
15
+
"github.com/oracle/oci-go-sdk/v65/common"
16
+
"strings"
17
+
)
18
+
19
+
// UsageDataDetails The source details of the usage data on Object Storage.
20
+
// Set `sourceType` to `objectStorageTuple`
21
+
// and use UsageDataViaObjectStorageTupleDetails
22
+
// when specifying the namespace, bucket name, and object name.
// Copyright (c) 2016, 2018, 2023, Oracle and/or its affiliates. All rights reserved.
2
+
// 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.
3
+
// Code generated. DO NOT EDIT.
4
+
5
+
// Application Dependency Management API
6
+
//
7
+
// Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see ADM (https://docs.cloud.oracle.com/Content/application-dependency-management/home.htm).
8
+
//
9
+
10
+
package adm
11
+
12
+
import (
13
+
"encoding/json"
14
+
"fmt"
15
+
"github.com/oracle/oci-go-sdk/v65/common"
16
+
"strings"
17
+
)
18
+
19
+
// UsageDataViaObjectStorageTupleDetails Reference to an object in Object Storage as a tuple.
20
+
typeUsageDataViaObjectStorageTupleDetailsstruct {
21
+
22
+
// The Object Storage bucket to read the usage data from.
Copy file name to clipboardExpand all lines: adm/vulnerability.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,9 @@ type Vulnerability struct {
30
30
31
31
// Indicates if the vulnerability was ignored according to the audit configuration.
32
32
IsIgnored*bool`mandatory:"true" json:"isIgnored"`
33
+
34
+
// Indicates if the vulnerability is a false positive according to the usage data. If no usage data was provided or the service cannot infer usage of the vulnerable code then this property is `null`.
0 commit comments