Skip to content

Commit cf484f1

Browse files
Releasing version 4.63.0
Releasing version 4.63.0
2 parents 662cd4d + 9f775b8 commit cf484f1

File tree

14,266 files changed

+439153
-252806
lines changed

Some content is hidden

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

14,266 files changed

+439153
-252806
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 4.63.0 (Unreleased)
2+
3+
### Added
4+
- Support for osp_gateway service supporting invoices and subscriptions
5+
- Support for data science service to list fast launch job configs
6+
- Get Secret content support
7+
8+
### Fixed
9+
- Adding missing visualbuilder service code
110
## 4.62.0 (February 02, 2022)
211

312
### Added
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {
5+
}
6+
7+
variable "user_ocid" {
8+
}
9+
10+
variable "fingerprint" {
11+
}
12+
13+
variable "private_key_path" {
14+
}
15+
16+
variable "compartment_ocid" {
17+
}
18+
19+
variable "region" {
20+
}
21+
22+
provider "oci" {
23+
region = "${var.region}"
24+
tenancy_ocid = "${var.tenancy_ocid}"
25+
user_ocid = "${var.user_ocid}"
26+
fingerprint = "${var.fingerprint}"
27+
private_key_path = "${var.private_key_path}"
28+
}
29+
30+
// invoices
31+
data "oci_osp_gateway_invoices" "test_invoices" {
32+
compartment_id = "${var.tenancy_ocid}"
33+
osp_home_region = "${var.region}"
34+
}
35+
36+
data "oci_osp_gateway_invoice" "test_invoice" {
37+
compartment_id = "${var.tenancy_ocid}"
38+
osp_home_region = "${var.region}"
39+
internal_invoice_id = "${lookup(data.oci_osp_gateway_invoices.test_invoices.invoice_collection.0.items[3], "internal_invoice_id")}"
40+
}
41+
42+
data "oci_osp_gateway_invoices_invoice_lines" "test_invoice_lines" {
43+
compartment_id = "${var.tenancy_ocid}"
44+
osp_home_region = "${var.region}"
45+
internal_invoice_id = "${data.oci_osp_gateway_invoice.test_invoice.internal_invoice_id}"
46+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {
5+
}
6+
7+
variable "user_ocid" {
8+
}
9+
10+
variable "fingerprint" {
11+
}
12+
13+
variable "private_key_path" {
14+
}
15+
16+
variable "compartment_ocid" {
17+
}
18+
19+
variable "region" {
20+
}
21+
22+
provider "oci" {
23+
region = "${var.region}"
24+
tenancy_ocid = "${var.tenancy_ocid}"
25+
user_ocid = "${var.user_ocid}"
26+
fingerprint = "${var.fingerprint}"
27+
private_key_path = "${var.private_key_path}"
28+
}
29+
30+
data "oci_osp_gateway_subscriptions" "test_subscriptions" {
31+
compartment_id = "${var.tenancy_ocid}"
32+
osp_home_region = "${var.region}"
33+
}
34+
35+
data "oci_osp_gateway_subscription" "test_subscription" {
36+
compartment_id = "${var.tenancy_ocid}"
37+
osp_home_region = "${var.region}"
38+
subscription_id = "${lookup(data.oci_osp_gateway_subscriptions.test_subscriptions.subscription_collection.0.items[0], "id")}"
39+
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/hashicorp/hcl2 v0.0.0-20190618163856-0b64543c968c
88
github.com/hashicorp/terraform-exec v0.13.3
99
github.com/hashicorp/terraform-plugin-sdk v1.17.2
10-
github.com/oracle/oci-go-sdk/v56 v56.1.0
10+
github.com/oracle/oci-go-sdk/v57 v57.0.0
1111
github.com/stretchr/testify v1.7.0
1212
golang.org/x/mod v0.4.2
1313
gopkg.in/yaml.v2 v2.3.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQ
302302
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
303303
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
304304
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
305-
github.com/oracle/oci-go-sdk/v56 v56.1.0 h1:HOr9P+MkwgrilEGTJCU7a6GMFrUG/RZAzvh/2JeRXvI=
306-
github.com/oracle/oci-go-sdk/v56 v56.1.0/go.mod h1:kDJAL3HEAF+4oQR8GfaOkY6rz2kU3/kZ6vYJnJXSCkA=
305+
github.com/oracle/oci-go-sdk/v57 v57.0.0 h1:G7/rA9kpB4+NJRowQaSeEbsaIVXJ/eu7rIrp8LuiSDs=
306+
github.com/oracle/oci-go-sdk/v57 v57.0.0/go.mod h1:g/8HesuNLeyzLQMkXthYFmWKVM+AFjAy96e3ZpXmIb0=
307307
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
308308
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
309309
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=

internal/acctest/oci_sweeper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"testing"
1212

1313
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
14-
oci_identity "github.com/oracle/oci-go-sdk/v56/identity"
14+
oci_identity "github.com/oracle/oci-go-sdk/v57/identity"
1515

1616
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
1717

internal/acctest/provider_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
oci_identity "github.com/oracle/oci-go-sdk/v56/identity"
17+
oci_identity "github.com/oracle/oci-go-sdk/v57/identity"
1818

1919
"github.com/terraform-providers/terraform-provider-oci/internal/globalvar"
2020

@@ -23,7 +23,7 @@ import (
2323
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
2424
"github.com/stretchr/testify/assert"
2525

26-
oci_common "github.com/oracle/oci-go-sdk/v56/common"
26+
oci_common "github.com/oracle/oci-go-sdk/v57/common"
2727

2828
tf_client "github.com/terraform-providers/terraform-provider-oci/internal/client"
2929
"github.com/terraform-providers/terraform-provider-oci/internal/provider"

internal/acctest/test_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
2929
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
3030
"github.com/hashicorp/terraform-plugin-sdk/terraform"
31-
oci_common "github.com/oracle/oci-go-sdk/v56/common"
31+
oci_common "github.com/oracle/oci-go-sdk/v57/common"
3232

3333
tf_client "github.com/terraform-providers/terraform-provider-oci/internal/client"
3434
tf_provider "github.com/terraform-providers/terraform-provider-oci/internal/provider"

internal/client/ai_anomaly_detection_clients.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
package client
55

66
import (
7-
oci_ai_anomaly_detection "github.com/oracle/oci-go-sdk/v56/aianomalydetection"
7+
oci_ai_anomaly_detection "github.com/oracle/oci-go-sdk/v57/aianomalydetection"
88

9-
oci_common "github.com/oracle/oci-go-sdk/v56/common"
9+
oci_common "github.com/oracle/oci-go-sdk/v57/common"
1010
)
1111

1212
func init() {

internal/client/analytics_clients.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
package client
55

66
import (
7-
oci_analytics "github.com/oracle/oci-go-sdk/v56/analytics"
7+
oci_analytics "github.com/oracle/oci-go-sdk/v57/analytics"
88

9-
oci_common "github.com/oracle/oci-go-sdk/v56/common"
9+
oci_common "github.com/oracle/oci-go-sdk/v57/common"
1010
)
1111

1212
func init() {

0 commit comments

Comments
 (0)