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+
}
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+
}
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.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)