Skip to content

Commit dfe4137

Browse files
committed
Merge pull request #1881 in SDK/oci-go-sdk from merge_to_github2022-03-07 to github
Releasing Version 61.0.0 Squashed commit of the following: commit 0e69dfae691bf816a21fed6885fb1a6c761520b3 Author: oci-dex-release-bot <[email protected]> Date: Mon Mar 7 18:47:08 2022 +0000 Releasing version 61 0 0
1 parent 169fa20 commit dfe4137

File tree

9,967 files changed

+14998
-10608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,967 files changed

+14998
-10608
lines changed

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66

7+
## 61.0.0 - 2022-03-08
8+
### Added
9+
- Support for the Sales Accelerator license option in the Content Management service
10+
- Support for VCN hostname cluster endpoints in the Container Engine for Kubernetes service
11+
- Support for optionally specifying an admin username and password when creating a database system during a restore operation in the MySQL Database service
12+
- Support for automatic tablespace creation on non-autonomous and autonomous database dedicated targets in the Database Migration service
13+
- Support for reporting excluded objects based on static exclusion rules and dynamic exclusion settings in the Database Migration service
14+
- Support for removing, listing, and adding database objects reported by the Cloud Premigration Advisor Tool (CPAT) in the Database Migration service
15+
- Support for migrating Oracle databases from the AWS RDS service to OCI as autonomous databases, using the AWS S3 service and DBLINK for data transfer, in the Database Migration service
16+
- Support for querying additional fields of a resource using return clauses in the Search service
17+
- Support for clusters and station clusters in the Roving Edge Infrastructure service
18+
- Support for creating database systems and database homes using customer-managed keys in the Database service
19+
20+
### Breaking Changes
21+
- Support for retries enabled by default on operations in the Container Engine for Kubernetes service
22+
- Support for retries enabled by default on operations in the Resource Manager service
23+
- Support for retries enabled by default on operations in the Search service
24+
725
## 60.0.0 - 2022-03-01
826
### Added
927
- Support for DRG route distribution statements to be specified with a new match type 'MATCH_ALL' for matching criteria in the Networking service
@@ -121,6 +139,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
121139

122140
### Breaking changes
123141
- Support for retries enabled by default on some operations in the Data Catalog service
142+
- Support for retries enabled by default on all operations in the Ocvp service
124143

125144
## 53.1.0 - 2021-12-07
126145
### Added

Diff for: README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![wercker status](https://app.wercker.com/status/09bc4818e7b1d70b04285331a9bdbc41/s/master "wercker status")](https://app.wercker.com/project/byKey/09bc4818e7b1d70b04285331a9bdbc41)
33

44
This is the Go SDK for Oracle Cloud Infrastructure. This project is open source and maintained by Oracle Corp.
5-
The home page for the project is [here](https://godoc.org/github.com/oracle/oci-go-sdk/v60/).
5+
The home page for the project is [here](https://godoc.org/github.com/oracle/oci-go-sdk/v61/).
66

77
## Survey
88
Are you a Developer using the OCI SDK? If so, please fill out our survey to help us make the OCI SDK better for you. Click [here](https://oracle.questionpro.com/t/APeMlZka26?custom3=pkg) for the survey page.
@@ -71,7 +71,7 @@ type ConfigurationProvider interface {
7171
AuthType() (AuthConfig, error)
7272
}
7373
```
74-
Or simply use one of structs exposed by the `oci-go-sdk` that already implement the above [interface](https://godoc.org/github.com/oracle/oci-go-sdk/v60/common#ConfigurationProvider)
74+
Or simply use one of structs exposed by the `oci-go-sdk` that already implement the above [interface](https://godoc.org/github.com/oracle/oci-go-sdk/v61/common#ConfigurationProvider)
7575

7676
### Making a Request
7777
To make a request to an Oracle Cloud Infrastructure service, create a client for the service and then use the client to call a function from the service.
@@ -114,6 +114,10 @@ export OCI_GOSDK_USING_EXPECT_HEADER=FALSE
114114
```sh
115115
export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE
116116
```
117+
- *Cicuit Breaker*: Circuit Breaker error message includes a set of previous failed responses. By default, the number of the failed responses is set to 5. It can be explicitly set using the env var:
118+
```sh
119+
export OCI_SDK_CIRCUITBREAKER_NUM_HISTORY_RESPONSE=<int value>
120+
```
117121

118122
## Organization of the SDK
119123
The `oci-go-sdk` contains the following:
@@ -132,7 +136,7 @@ in this package are meant to be used by the service packages.
132136
Examples can be found [here](https://github.com/oracle/oci-go-sdk/tree/master/example)
133137

134138
## Documentation
135-
Full documentation can be found [on the godocs site](https://godoc.org/github.com/oracle/oci-go-sdk/v60/).
139+
Full documentation can be found [on the godocs site](https://godoc.org/github.com/oracle/oci-go-sdk/v61/).
136140

137141
## Help
138142
* The [Issues](https://github.com/oracle/oci-go-sdk/issues) page of this GitHub repository.

Diff for: aianomalydetection/ai_private_endpoint.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/ai_private_endpoint_collection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/ai_private_endpoint_summary.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/aianomalydetection_anomalydetection_client.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ package aianomalydetection
1414
import (
1515
"context"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
18-
"github.com/oracle/oci-go-sdk/v60/common/auth"
17+
"github.com/oracle/oci-go-sdk/v61/common"
18+
"github.com/oracle/oci-go-sdk/v61/common/auth"
1919
"net/http"
2020
)
2121

Diff for: aianomalydetection/anomaly.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/anomaly_detect_result.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/cancel_work_request_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/change_ai_private_endpoint_compartment_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/change_ai_private_endpoint_compartment_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/change_data_asset_compartment_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/change_data_asset_compartment_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/change_model_compartment_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/change_model_compartment_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/change_project_compartment_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/change_project_compartment_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/create_ai_private_endpoint_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/create_ai_private_endpoint_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/create_data_asset_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/create_data_asset_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/create_model_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/create_model_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/create_project_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/create_project_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/data_asset.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/data_asset_collection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/data_asset_summary.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/data_item.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package aianomalydetection
1313

1414
import (
1515
"fmt"
16-
"github.com/oracle/oci-go-sdk/v60/common"
16+
"github.com/oracle/oci-go-sdk/v61/common"
1717
"strings"
1818
)
1919

Diff for: aianomalydetection/data_source_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/data_source_details_atp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/data_source_details_influx.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/data_source_details_object_storage.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

Diff for: aianomalydetection/delete_ai_private_endpoint_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/delete_data_asset_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/delete_model_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/delete_project_request_response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package aianomalydetection
66

77
import (
88
"fmt"
9-
"github.com/oracle/oci-go-sdk/v60/common"
9+
"github.com/oracle/oci-go-sdk/v61/common"
1010
"net/http"
1111
"strings"
1212
)

Diff for: aianomalydetection/detect_anomalies_details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package aianomalydetection
1414
import (
1515
"encoding/json"
1616
"fmt"
17-
"github.com/oracle/oci-go-sdk/v60/common"
17+
"github.com/oracle/oci-go-sdk/v61/common"
1818
"strings"
1919
)
2020

0 commit comments

Comments
 (0)