Skip to content

Commit cc07929

Browse files
Merge pull request #1892 from oracle/release_gh
Releasing version 5.1.0
2 parents a9a44cb + 4234a38 commit cc07929

File tree

586 files changed

+30387
-593
lines changed

Some content is hidden

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

586 files changed

+30387
-593
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 5.1.0 (June 14, 2023)
2+
3+
### Added
4+
- Support for Java Management Service 7.0
5+
- Support for Usage proxy: Adding APIs for MQS public API deprecation
6+
- Support for Allow user to select the billing interval of deleted nodes
7+
- Support for realm specific service endpoints
8+
- Support for CASPER - ObjectStorage to have Customer Specific Domains in Customer Zone DNS
9+
- Support for OPSI: TCPS Support for Cloud Databases
10+
- Support for Operations Insights AIX Support
11+
- Custom model features in Document Service
12+
### Bug Fix
13+
- Remove duplicate Create for resource
14+
- updated examples for devops artifact to show options and helm example and public docs
15+
116
## 5.0.0 (June 06, 2023)
217

318
### Added

examples/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This directory contains Terraform configuration files showing how to create spec
55
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/adm.zip)
66
- aiAnomalyDetection
77
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/aiAnomalyDetection.zip)
8+
- aiDocument
9+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/aiDocument.zip)
810
- aiVision
911
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/aiVision.zip)
1012
- always_free

examples/aiDocument/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Overview
2+
This is a Terraform configuration that creates the AI Document resources on Oracle Cloud Infrastructure.
3+
4+
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
5+
## Magic Button
6+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/aiDocument.zip)

examples/aiDocument/description.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Overview
2+
This is a Terraform configuration that creates the AI Document resources on Oracle Cloud Infrastructure.
3+
4+
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.

examples/aiDocument/main.tf

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
provider "oci" {
2+
}
3+
4+
variable "tenancy_ocid" {
5+
default = "ocid1.tenancy.oc1..aaaaaaaaikox5b3adi2w237m2fwomzxybp52i7byjrj5fxradayjqxum7bsq"
6+
}
7+
8+
variable "region" {
9+
default = "us-phoenix-1"
10+
}
11+
12+
variable "model_model_version" {
13+
default = "modelVersion"
14+
}
15+
16+
variable "compartment_id" { default = "ocid1.compartment.oc1..aaaaaaaa3jewat7ub6yf257bsxvfcfz5zt46fruduji37ekbsefwmcmzvgxq" }
17+
18+
variable defined_tag_namespace_name { default = "" }
19+
20+
21+
resource "oci_ai_document_project" "test_project" {
22+
compartment_id = var.compartment_id
23+
}
24+
25+
resource "oci_ai_document_model" "test_model" {
26+
#Required
27+
compartment_id = var.compartment_id
28+
model_type = "KEY_VALUE_EXTRACTION"
29+
project_id = oci_ai_document_project.test_project.id
30+
31+
training_dataset {
32+
bucket = "tf_test_bucket"
33+
dataset_type = "OBJECT_STORAGE"
34+
namespace = "axgexwaxnm7k"
35+
object = "tf_test_dataset_1680065500556.jsonl"
36+
}
37+
38+
#Optional
39+
display_name = "test_tf_model"
40+
is_quick_mode = "false"
41+
max_training_time_in_hours = "0.5"
42+
model_version = var.model_model_version
43+
}

examples/apm/apm_domains/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ data "oci_apm_data_keys" "test_data_keys" {
7171

7272
#Optional
7373
data_key_type = var.data_key_data_key_type
74-
}
74+
}

examples/devops/deployment_service/deploy_helm_artifact_with_attestation/deploy_helm_artifact_for_attestation.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ locals {
4646

4747
resource "oci_devops_deploy_artifact" "helm_chart_implicit_no_public_key" {
4848
#Required
49-
argument_substitution_mode = "SUBSTITUTE_PLACEHOLDERS"
49+
argument_substitution_mode = "NONE"
5050
deploy_artifact_source {
5151
#Required
5252
deploy_artifact_source_type = "HELM_CHART"
@@ -66,7 +66,7 @@ resource "oci_devops_deploy_artifact" "helm_chart_implicit_no_public_key" {
6666

6767
resource "oci_devops_deploy_artifact" "helm_chart_no_public_key" {
6868
#Required
69-
argument_substitution_mode = "SUBSTITUTE_PLACEHOLDERS"
69+
argument_substitution_mode = "NONE"
7070
deploy_artifact_source {
7171
#Required
7272
deploy_artifact_source_type = "HELM_CHART"
@@ -92,7 +92,7 @@ resource "oci_devops_deploy_artifact" "helm_chart_no_public_key" {
9292

9393
resource "oci_devops_deploy_artifact" "helm_chart_vault_public_key" {
9494
#Required
95-
argument_substitution_mode = "SUBSTITUTE_PLACEHOLDERS"
95+
argument_substitution_mode = "NONE"
9696
deploy_artifact_source {
9797
#Required
9898
deploy_artifact_source_type = "HELM_CHART"
@@ -119,7 +119,7 @@ resource "oci_devops_deploy_artifact" "helm_chart_vault_public_key" {
119119

120120
resource "oci_devops_deploy_artifact" "helm_chart_inline_public_key" {
121121
#Required
122-
argument_substitution_mode = "SUBSTITUTE_PLACEHOLDERS"
122+
argument_substitution_mode = "NONE"
123123
deploy_artifact_source {
124124
#Required
125125
deploy_artifact_source_type = "HELM_CHART"

examples/jms/announcements/main.tf

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
10+
variable "time_start" {}
11+
12+
variable "time_end" {}
13+
14+
variable "summary_contains" {
15+
default = "example summary value"
16+
}
17+
18+
provider "oci" {
19+
tenancy_ocid = var.tenancy_ocid
20+
user_ocid = var.user_ocid
21+
fingerprint = var.fingerprint
22+
private_key_path = var.private_key_path
23+
region = var.region
24+
}
25+
26+
data "oci_jms_announcements" "test_jms_announcements" {
27+
#Optional
28+
summary_contains = var.summary_contains
29+
time_start = var.time_start
30+
time_end = var.time_end
31+
}

examples/jms/fleet_advanced_feature_configuration/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ variable "fleet_id" {
1111
default = "example-fleet-id"
1212
}
1313

14-
15-
1614
provider "oci" {
1715
tenancy_ocid = var.tenancy_ocid
1816
user_ocid = var.user_ocid

examples/jms/fleet_blocklists/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ variable "fleet_blocklist_operation" {
1515
default = "DELETE_JAVA_INSTALLATION"
1616
}
1717

18-
19-
2018
provider "oci" {
2119
tenancy_ocid = var.tenancy_ocid
2220
user_ocid = var.user_ocid

0 commit comments

Comments
 (0)