Skip to content

Commit 140712a

Browse files
authored
Merge pull request #2304 from oracle/release_gh
Releasing version 6.27.0
2 parents 758a151 + c32aab5 commit 140712a

File tree

3,365 files changed

+156076
-18309
lines changed

Some content is hidden

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

3,365 files changed

+156076
-18309
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions

coverage/coverage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
var totalRgx = regexp.MustCompile(`total:\s+\(statements\)\s+([^"]*)%`)
1616

17-
const CodeCoverageThreshold = 55.9
17+
const CodeCoverageThreshold = 53.0
1818

1919
func TestCoverage(t *testing.T) {
2020
if os.Getenv("CHECK_COVERAGE") != "true" {

examples/jms/fleet_error.tf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "fleet_error_compartment_id_in_subtree" {
5+
default = false
6+
}
7+
8+
variable "fleet_error_time_first_seen_greater_than_or_equal_to" {}
9+
10+
variable "fleet_error_time_first_seen_less_than_or_equal_to" {}
11+
12+
variable "fleet_error_time_last_seen_greater_than_or_equal_to" {}
13+
14+
variable "fleet_error_time_last_seen_less_than_or_equal_to" {}
15+
16+
17+
data "oci_jms_fleet_errors" "test_fleet_errors" {
18+
19+
#Optional
20+
compartment_id = var.compartment_id
21+
compartment_id_in_subtree = var.fleet_error_compartment_id_in_subtree
22+
fleet_id = var.fleet_ocid
23+
time_first_seen_greater_than_or_equal_to = var.fleet_error_time_first_seen_greater_than_or_equal_to
24+
time_first_seen_less_than_or_equal_to = var.fleet_error_time_first_seen_less_than_or_equal_to
25+
time_last_seen_greater_than_or_equal_to = var.fleet_error_time_last_seen_greater_than_or_equal_to
26+
time_last_seen_less_than_or_equal_to = var.fleet_error_time_last_seen_less_than_or_equal_to
27+
}

examples/jms/fleet_error_analytic.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "fleet_error_analytic_compartment_id_in_subtree" {
5+
default = false
6+
}
7+
8+
data "oci_jms_fleet_error_analytics" "test_fleet_error_analytics" {
9+
10+
#Optional
11+
compartment_id = var.compartment_id
12+
compartment_id_in_subtree = var.fleet_error_analytic_compartment_id_in_subtree
13+
}

examples/jms/fleet_performance_tuning_analysis_result.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ data "oci_jms_fleet_performance_tuning_analysis_results" "test_jms_fleet_perform
1010
fleet_id = var.fleet_ocid
1111

1212
#Optional
13-
application_id = var.application_id
13+
application_id = var.application_id
14+
application_name = var.application.name
1415
managed_instance_id = var.managed_instance_ocid
1516
host_name = var.host_name
1617
time_start = var.time_start

examples/jms/jms_plugin.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33

44
# You need actual OCID value of compute instance or managed instance to create this resource.
55
# variable "agent_id" {}
6+
# variable "jms_plugin_agent_type" {
7+
# default = "OMA"
8+
# }
69
# resource "oci_jms_jms_plugin" "example_jms_plugin" {
710
# #Required
811
# agent_id = var.agent_id
12+
# agent_type = var.jms_plugin_agent_type
913
# compartment_id = var.compartment_ocid
1014

1115
# #Optional

examples/jms/plugin_error.tf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
3+
// Licensed under the Mozilla Public License v2.0
4+
5+
variable "plugin_error_compartment_id_in_subtree" {
6+
default = false
7+
}
8+
9+
variable "plugin_error_time_first_seen_greater_than_or_equal_to" {}
10+
11+
variable "plugin_error_time_first_seen_less_than_or_equal_to" {}
12+
13+
variable "plugin_error_time_last_seen_greater_than_or_equal_to" {}
14+
15+
variable "plugin_error_time_last_seen_less_than_or_equal_to" {}
16+
17+
data "oci_jms_plugin_errors" "test_plugin_errors" {
18+
19+
#Optional
20+
compartment_id = var.compartment_id
21+
compartment_id_in_subtree = var.plugin_error_compartment_id_in_subtree
22+
managed_instance_id = var.managed_instance_ocid
23+
time_first_seen_greater_than_or_equal_to = var.plugin_error_time_first_seen_greater_than_or_equal_to
24+
time_first_seen_less_than_or_equal_to = var.plugin_error_time_first_seen_less_than_or_equal_to
25+
time_last_seen_greater_than_or_equal_to = var.plugin_error_time_last_seen_greater_than_or_equal_to
26+
time_last_seen_less_than_or_equal_to = var.plugin_error_time_last_seen_less_than_or_equal_to
27+
}

examples/jms/plugin_error_analytic.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "plugin_error_analytic_compartment_id_in_subtree" {
5+
default = false
6+
}
7+
8+
data "oci_jms_plugin_error_analytics" "test_plugin_error_analytics" {
9+
10+
#Optional
11+
compartment_id = var.compartment_id
12+
compartment_id_in_subtree = var.plugin_error_analytic_compartment_id_in_subtree
13+
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.

examples/zips/aiAnomalyDetection.zip

0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

examples/zips/analytics.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/api_gateway.zip

0 Bytes
Binary file not shown.

examples/zips/apm.zip

0 Bytes
Binary file not shown.

examples/zips/appmgmt_control.zip

0 Bytes
Binary file not shown.

examples/zips/artifacts.zip

0 Bytes
Binary file not shown.

examples/zips/audit.zip

0 Bytes
Binary file not shown.

examples/zips/autoscaling.zip

0 Bytes
Binary file not shown.

examples/zips/bastion.zip

0 Bytes
Binary file not shown.

examples/zips/big_data_service.zip

0 Bytes
Binary file not shown.

examples/zips/blockchain.zip

0 Bytes
Binary file not shown.

examples/zips/budget.zip

0 Bytes
Binary file not shown.

examples/zips/capacity_management.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/cloudBridge.zip

0 Bytes
Binary file not shown.

examples/zips/cloudMigrations.zip

0 Bytes
Binary file not shown.

examples/zips/cloudguard.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/compute.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/concepts.zip

0 Bytes
Binary file not shown.

examples/zips/container_engine.zip

0 Bytes
Binary file not shown.

examples/zips/container_instances.zip

0 Bytes
Binary file not shown.

examples/zips/database.zip

0 Bytes
Binary file not shown.

examples/zips/databaseTools.zip

0 Bytes
Binary file not shown.

examples/zips/databasemanagement.zip

0 Bytes
Binary file not shown.

examples/zips/databasemigration.zip

0 Bytes
Binary file not shown.

examples/zips/datacatalog.zip

0 Bytes
Binary file not shown.

examples/zips/dataflow.zip

0 Bytes
Binary file not shown.

examples/zips/dataintegration.zip

0 Bytes
Binary file not shown.

examples/zips/datalabeling.zip

0 Bytes
Binary file not shown.

examples/zips/datasafe.zip

0 Bytes
Binary file not shown.

examples/zips/datascience.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/demand_signal.zip

0 Bytes
Binary file not shown.

examples/zips/desktops.zip

0 Bytes
Binary file not shown.

examples/zips/devops.zip

0 Bytes
Binary file not shown.

examples/zips/disaster_recovery.zip

0 Bytes
Binary file not shown.

examples/zips/dns.zip

0 Bytes
Binary file not shown.

examples/zips/em_warehouse.zip

0 Bytes
Binary file not shown.

examples/zips/email.zip

0 Bytes
Binary file not shown.

examples/zips/events.zip

0 Bytes
Binary file not shown.

examples/zips/fast_connect.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/fleetsoftwareupdate.zip

0 Bytes
Binary file not shown.

examples/zips/functions.zip

0 Bytes
Binary file not shown.

examples/zips/fusionapps.zip

0 Bytes
Binary file not shown.

examples/zips/generative_ai.zip

0 Bytes
Binary file not shown.

examples/zips/generative_ai_agent.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/goldengate.zip

0 Bytes
Binary file not shown.

examples/zips/health_checks.zip

0 Bytes
Binary file not shown.

examples/zips/id6.zip

0 Bytes
Binary file not shown.

examples/zips/identity.zip

0 Bytes
Binary file not shown.

examples/zips/identity_data_plane.zip

0 Bytes
Binary file not shown.

examples/zips/identity_domains.zip

0 Bytes
Binary file not shown.

examples/zips/integration.zip

0 Bytes
Binary file not shown.

examples/zips/jms.zip

1.84 KB
Binary file not shown.

examples/zips/jms_java_downloads.zip

0 Bytes
Binary file not shown.

examples/zips/kms.zip

0 Bytes
Binary file not shown.

examples/zips/license_manager.zip

0 Bytes
Binary file not shown.

examples/zips/limits.zip

0 Bytes
Binary file not shown.

examples/zips/load_balancer.zip

0 Bytes
Binary file not shown.

examples/zips/log_analytics.zip

0 Bytes
Binary file not shown.

examples/zips/logging.zip

0 Bytes
Binary file not shown.

examples/zips/management_agent.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/marketplace.zip

0 Bytes
Binary file not shown.

examples/zips/media_services.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/monitoring.zip

0 Bytes
Binary file not shown.

examples/zips/mysql.zip

0 Bytes
Binary file not shown.

examples/zips/network_firewall.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/networking.zip

0 Bytes
Binary file not shown.

examples/zips/nosql.zip

0 Bytes
Binary file not shown.

examples/zips/notifications.zip

0 Bytes
Binary file not shown.

examples/zips/object_storage.zip

0 Bytes
Binary file not shown.

examples/zips/ocvp.zip

0 Bytes
Binary file not shown.

examples/zips/onesubscription.zip

0 Bytes
Binary file not shown.

examples/zips/opa.zip

0 Bytes
Binary file not shown.

examples/zips/opensearch.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/opsi.zip

0 Bytes
Binary file not shown.

examples/zips/optimizer.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/os_management_hub.zip

0 Bytes
Binary file not shown.

examples/zips/osmanagement.zip

0 Bytes
Binary file not shown.

examples/zips/osp_gateway.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/osub_subscription.zip

0 Bytes
Binary file not shown.

examples/zips/osub_usage.zip

0 Bytes
Binary file not shown.

examples/zips/pic.zip

0 Bytes
Binary file not shown.

examples/zips/psql.zip

0 Bytes
Binary file not shown.

examples/zips/queue.zip

0 Bytes
Binary file not shown.

examples/zips/recovery.zip

0 Bytes
Binary file not shown.

examples/zips/redis.zip

0 Bytes
Binary file not shown.

examples/zips/resourcemanager.zip

0 Bytes
Binary file not shown.

examples/zips/resourcescheduler.zip

0 Bytes
Binary file not shown.

examples/zips/security_attribute.zip

0 Bytes
Binary file not shown.

examples/zips/serviceManagerProxy.zip

0 Bytes
Binary file not shown.

examples/zips/service_catalog.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/service_mesh.zip

0 Bytes
Binary file not shown.

examples/zips/stack_monitoring.zip

0 Bytes
Binary file not shown.

examples/zips/storage.zip

0 Bytes
Binary file not shown.

examples/zips/streaming.zip

0 Bytes
Binary file not shown.
534 Bytes
Binary file not shown.

examples/zips/usage_proxy.zip

0 Bytes
Binary file not shown.

examples/zips/vault_secret.zip

0 Bytes
Binary file not shown.

examples/zips/vbs_inst.zip

0 Bytes
Binary file not shown.

examples/zips/visual_builder.zip

0 Bytes
Binary file not shown.

examples/zips/vn_monitoring.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/web_app_firewall.zip

0 Bytes
Binary file not shown.
Binary file not shown.

examples/zips/zpr.zip

0 Bytes
Binary file not shown.

go.mod

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,44 @@ require (
44
github.com/fatih/color v1.16.0
55
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
66
github.com/hashicorp/go-multierror v1.1.1
7-
github.com/hashicorp/hc-install v0.6.3
7+
github.com/hashicorp/go-version v1.7.0
8+
github.com/hashicorp/hc-install v0.7.0
89
github.com/hashicorp/hcl2 v0.0.0-20190618163856-0b64543c968c
9-
github.com/hashicorp/terraform-exec v0.20.0
10-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
10+
github.com/hashicorp/terraform-exec v0.21.0
11+
github.com/hashicorp/terraform-plugin-framework v1.10.0
12+
github.com/hashicorp/terraform-plugin-framework-validators v0.13.0
13+
github.com/hashicorp/terraform-plugin-go v0.23.0
14+
github.com/hashicorp/terraform-plugin-mux v0.16.0
15+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0
16+
github.com/hashicorp/terraform-plugin-testing v1.9.0
17+
github.com/oracle/oci-go-sdk/v65 v65.83.2
1118
github.com/stretchr/testify v1.8.4
12-
golang.org/x/mod v0.15.0
19+
golang.org/x/mod v0.20.0
1320
gopkg.in/yaml.v2 v2.3.0
1421
)
1522

1623
require (
17-
github.com/ProtonMail/go-crypto v1.1.0-alpha.0 // indirect
18-
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
19-
github.com/cloudflare/circl v1.3.7 // indirect
20-
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
21-
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
22-
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
23-
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
24-
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
25-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
26-
)
27-
28-
require (
24+
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
2925
github.com/agext/levenshtein v1.2.2 // indirect
3026
github.com/apparentlymart/go-textseg v1.0.0 // indirect
27+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
28+
github.com/cloudflare/circl v1.3.7 // indirect
3129
github.com/davecgh/go-spew v1.1.1 // indirect
3230
github.com/gofrs/flock v0.8.1 // indirect
3331
github.com/golang/protobuf v1.5.4 // indirect
3432
github.com/google/go-cmp v0.6.0 // indirect
3533
github.com/hashicorp/errwrap v1.0.0 // indirect
3634
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3735
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
38-
github.com/hashicorp/go-hclog v1.5.0 // indirect
36+
github.com/hashicorp/go-hclog v1.6.3 // indirect
3937
github.com/hashicorp/go-plugin v1.6.0 // indirect
4038
github.com/hashicorp/go-uuid v1.0.3 // indirect
41-
github.com/hashicorp/go-version v1.6.0
42-
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
39+
github.com/hashicorp/hcl/v2 v2.21.0 // indirect
4340
github.com/hashicorp/logutils v1.0.0 // indirect
44-
github.com/hashicorp/terraform-json v0.21.0 // indirect
45-
github.com/hashicorp/terraform-plugin-go v0.22.0 // indirect
41+
github.com/hashicorp/terraform-json v0.22.1 // indirect
42+
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
43+
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
44+
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
4645
github.com/hashicorp/yamux v0.1.1 // indirect
4746
github.com/mattn/go-colorable v0.1.13 // indirect
4847
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -52,17 +51,21 @@ require (
5251
github.com/mitchellh/mapstructure v1.5.0 // indirect
5352
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5453
github.com/oklog/run v1.0.0 // indirect
55-
github.com/oracle/oci-go-sdk/v65 v65.83.1
5654
github.com/pmezard/go-difflib v1.0.0 // indirect
5755
github.com/sony/gobreaker v0.5.0 // indirect
5856
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
59-
github.com/zclconf/go-cty v1.14.2 // indirect
60-
golang.org/x/crypto v0.21.0 // indirect
61-
golang.org/x/net v0.23.0 // indirect
62-
golang.org/x/sys v0.18.0 // indirect
63-
golang.org/x/text v0.14.0 // indirect
57+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
58+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
59+
github.com/zclconf/go-cty v1.14.4 // indirect
60+
golang.org/x/crypto v0.33.0 // indirect
61+
golang.org/x/net v0.35.0 // indirect
62+
golang.org/x/sync v0.11.0 // indirect
63+
golang.org/x/sys v0.30.0 // indirect
64+
golang.org/x/text v0.22.0 // indirect
65+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
6466
google.golang.org/appengine v1.6.8 // indirect
65-
google.golang.org/grpc v1.61.1 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
68+
google.golang.org/grpc v1.63.2 // indirect
6669
google.golang.org/protobuf v1.35.1 // indirect
6770
gopkg.in/yaml.v3 v3.0.1 // indirect
6871
)

0 commit comments

Comments
 (0)