Skip to content

Commit 3a27b67

Browse files
Releasing version 2.154.1
Releasing version 2.154.1
2 parents 68dc611 + d7047f3 commit 3a27b67

File tree

4 files changed

+45
-31
lines changed

4 files changed

+45
-31
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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+
====================
8+
2.154.1 - 2025-06-10
9+
====================
10+
11+
Added
12+
-----
13+
* Support for performing an explicit Data Guard pre-check by setting new optional dry-run parameter when creating a database in the Database service
14+
715
====================
816
2.154.0 - 2025-06-03
917
====================

src/oci/apm_synthetics/apm_synthetic_client.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def aggregate_network_data(self, apm_domain_id, monitor_id, aggregate_network_da
164164
resource_path = "/monitors/{monitorId}/actions/aggregateNetworkData"
165165
method = "POST"
166166
operation_name = "aggregate_network_data"
167-
api_reference_link = ""
167+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/AggregatedNetworkDataResult/AggregateNetworkData"
168168

169169
# Don't accept unknown kwargs
170170
expected_kwargs = [
@@ -285,7 +285,7 @@ def create_dedicated_vantage_point(self, apm_domain_id, create_dedicated_vantage
285285
resource_path = "/dedicatedVantagePoints"
286286
method = "POST"
287287
operation_name = "create_dedicated_vantage_point"
288-
api_reference_link = ""
288+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/DedicatedVantagePoint/CreateDedicatedVantagePoint"
289289

290290
# Don't accept unknown kwargs
291291
expected_kwargs = [
@@ -394,7 +394,7 @@ def create_monitor(self, apm_domain_id, create_monitor_details, **kwargs):
394394
resource_path = "/monitors"
395395
method = "POST"
396396
operation_name = "create_monitor"
397-
api_reference_link = ""
397+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Monitor/CreateMonitor"
398398

399399
# Don't accept unknown kwargs
400400
expected_kwargs = [
@@ -503,7 +503,7 @@ def create_on_premise_vantage_point(self, apm_domain_id, create_on_premise_vanta
503503
resource_path = "/onPremiseVantagePoints"
504504
method = "POST"
505505
operation_name = "create_on_premise_vantage_point"
506-
api_reference_link = ""
506+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/OnPremiseVantagePoint/CreateOnPremiseVantagePoint"
507507

508508
# Don't accept unknown kwargs
509509
expected_kwargs = [
@@ -612,7 +612,7 @@ def create_script(self, apm_domain_id, create_script_details, **kwargs):
612612
resource_path = "/scripts"
613613
method = "POST"
614614
operation_name = "create_script"
615-
api_reference_link = ""
615+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Script/CreateScript"
616616

617617
# Don't accept unknown kwargs
618618
expected_kwargs = [
@@ -724,7 +724,7 @@ def create_worker(self, apm_domain_id, on_premise_vantage_point_id, create_worke
724724
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}/workers"
725725
method = "POST"
726726
operation_name = "create_worker"
727-
api_reference_link = ""
727+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Worker/CreateWorker"
728728

729729
# Don't accept unknown kwargs
730730
expected_kwargs = [
@@ -845,7 +845,7 @@ def delete_dedicated_vantage_point(self, apm_domain_id, dedicated_vantage_point_
845845
resource_path = "/dedicatedVantagePoints/{dedicatedVantagePointId}"
846846
method = "DELETE"
847847
operation_name = "delete_dedicated_vantage_point"
848-
api_reference_link = ""
848+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/DedicatedVantagePoint/DeleteDedicatedVantagePoint"
849849

850850
# Don't accept unknown kwargs
851851
expected_kwargs = [
@@ -961,7 +961,7 @@ def delete_monitor(self, apm_domain_id, monitor_id, **kwargs):
961961
resource_path = "/monitors/{monitorId}"
962962
method = "DELETE"
963963
operation_name = "delete_monitor"
964-
api_reference_link = ""
964+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Monitor/DeleteMonitor"
965965

966966
# Don't accept unknown kwargs
967967
expected_kwargs = [
@@ -1077,7 +1077,7 @@ def delete_on_premise_vantage_point(self, apm_domain_id, on_premise_vantage_poin
10771077
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}"
10781078
method = "DELETE"
10791079
operation_name = "delete_on_premise_vantage_point"
1080-
api_reference_link = ""
1080+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/OnPremiseVantagePoint/DeleteOnPremiseVantagePoint"
10811081

10821082
# Don't accept unknown kwargs
10831083
expected_kwargs = [
@@ -1193,7 +1193,7 @@ def delete_script(self, apm_domain_id, script_id, **kwargs):
11931193
resource_path = "/scripts/{scriptId}"
11941194
method = "DELETE"
11951195
operation_name = "delete_script"
1196-
api_reference_link = ""
1196+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Script/DeleteScript"
11971197

11981198
# Don't accept unknown kwargs
11991199
expected_kwargs = [
@@ -1312,7 +1312,7 @@ def delete_worker(self, apm_domain_id, on_premise_vantage_point_id, worker_id, *
13121312
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}/workers/{workerId}"
13131313
method = "DELETE"
13141314
operation_name = "delete_worker"
1315-
api_reference_link = ""
1315+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Worker/DeleteWorker"
13161316

13171317
# Don't accept unknown kwargs
13181318
expected_kwargs = [
@@ -1422,7 +1422,7 @@ def get_dedicated_vantage_point(self, apm_domain_id, dedicated_vantage_point_id,
14221422
resource_path = "/dedicatedVantagePoints/{dedicatedVantagePointId}"
14231423
method = "GET"
14241424
operation_name = "get_dedicated_vantage_point"
1425-
api_reference_link = ""
1425+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/DedicatedVantagePoint/GetDedicatedVantagePoint"
14261426

14271427
# Don't accept unknown kwargs
14281428
expected_kwargs = [
@@ -1531,7 +1531,7 @@ def get_monitor(self, apm_domain_id, monitor_id, **kwargs):
15311531
resource_path = "/monitors/{monitorId}"
15321532
method = "GET"
15331533
operation_name = "get_monitor"
1534-
api_reference_link = ""
1534+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Monitor/GetMonitor"
15351535

15361536
# Don't accept unknown kwargs
15371537
expected_kwargs = [
@@ -1652,7 +1652,7 @@ def get_monitor_result(self, apm_domain_id, monitor_id, vantage_point, result_ty
16521652
resource_path = "/monitors/{monitorId}/results/{executionTime}"
16531653
method = "GET"
16541654
operation_name = "get_monitor_result"
1655-
api_reference_link = ""
1655+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/MonitorResult/GetMonitorResult"
16561656

16571657
# Don't accept unknown kwargs
16581658
expected_kwargs = [
@@ -1765,7 +1765,7 @@ def get_on_premise_vantage_point(self, apm_domain_id, on_premise_vantage_point_i
17651765
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}"
17661766
method = "GET"
17671767
operation_name = "get_on_premise_vantage_point"
1768-
api_reference_link = ""
1768+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/OnPremiseVantagePoint/GetOnPremiseVantagePoint"
17691769

17701770
# Don't accept unknown kwargs
17711771
expected_kwargs = [
@@ -1874,7 +1874,7 @@ def get_script(self, apm_domain_id, script_id, **kwargs):
18741874
resource_path = "/scripts/{scriptId}"
18751875
method = "GET"
18761876
operation_name = "get_script"
1877-
api_reference_link = ""
1877+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Script/GetScript"
18781878

18791879
# Don't accept unknown kwargs
18801880
expected_kwargs = [
@@ -1986,7 +1986,7 @@ def get_worker(self, apm_domain_id, on_premise_vantage_point_id, worker_id, **kw
19861986
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}/workers/{workerId}"
19871987
method = "GET"
19881988
operation_name = "get_worker"
1989-
api_reference_link = ""
1989+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Worker/GetWorker"
19901990

19911991
# Don't accept unknown kwargs
19921992
expected_kwargs = [
@@ -2129,7 +2129,7 @@ def list_dedicated_vantage_points(self, apm_domain_id, **kwargs):
21292129
resource_path = "/dedicatedVantagePoints"
21302130
method = "GET"
21312131
operation_name = "list_dedicated_vantage_points"
2132-
api_reference_link = ""
2132+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/DedicatedVantagePointCollection/ListDedicatedVantagePoints"
21332133

21342134
# Don't accept unknown kwargs
21352135
expected_kwargs = [
@@ -2307,7 +2307,7 @@ def list_monitors(self, apm_domain_id, **kwargs):
23072307
resource_path = "/monitors"
23082308
method = "GET"
23092309
operation_name = "list_monitors"
2310-
api_reference_link = ""
2310+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/MonitorCollection/ListMonitors"
23112311

23122312
# Don't accept unknown kwargs
23132313
expected_kwargs = [
@@ -2475,7 +2475,7 @@ def list_on_premise_vantage_points(self, apm_domain_id, **kwargs):
24752475
resource_path = "/onPremiseVantagePoints"
24762476
method = "GET"
24772477
operation_name = "list_on_premise_vantage_points"
2478-
api_reference_link = ""
2478+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/OnPremiseVantagePointCollection/ListOnPremiseVantagePoints"
24792479

24802480
# Don't accept unknown kwargs
24812481
expected_kwargs = [
@@ -2624,7 +2624,7 @@ def list_public_vantage_points(self, apm_domain_id, **kwargs):
26242624
resource_path = "/publicVantagePoints"
26252625
method = "GET"
26262626
operation_name = "list_public_vantage_points"
2627-
api_reference_link = ""
2627+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/PublicVantagePointCollection/ListPublicVantagePoints"
26282628

26292629
# Don't accept unknown kwargs
26302630
expected_kwargs = [
@@ -2775,7 +2775,7 @@ def list_scripts(self, apm_domain_id, **kwargs):
27752775
resource_path = "/scripts"
27762776
method = "GET"
27772777
operation_name = "list_scripts"
2778-
api_reference_link = ""
2778+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/ScriptCollection/ListScripts"
27792779

27802780
# Don't accept unknown kwargs
27812781
expected_kwargs = [
@@ -2937,7 +2937,7 @@ def list_workers(self, apm_domain_id, on_premise_vantage_point_id, **kwargs):
29372937
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}/workers"
29382938
method = "GET"
29392939
operation_name = "list_workers"
2940-
api_reference_link = ""
2940+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/WorkerCollection/ListWorkers"
29412941

29422942
# Don't accept unknown kwargs
29432943
expected_kwargs = [
@@ -3093,7 +3093,7 @@ def update_dedicated_vantage_point(self, apm_domain_id, dedicated_vantage_point_
30933093
resource_path = "/dedicatedVantagePoints/{dedicatedVantagePointId}"
30943094
method = "PUT"
30953095
operation_name = "update_dedicated_vantage_point"
3096-
api_reference_link = ""
3096+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/DedicatedVantagePoint/UpdateDedicatedVantagePoint"
30973097

30983098
# Don't accept unknown kwargs
30993099
expected_kwargs = [
@@ -3216,7 +3216,7 @@ def update_monitor(self, apm_domain_id, monitor_id, update_monitor_details, **kw
32163216
resource_path = "/monitors/{monitorId}"
32173217
method = "PUT"
32183218
operation_name = "update_monitor"
3219-
api_reference_link = ""
3219+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Monitor/UpdateMonitor"
32203220

32213221
# Don't accept unknown kwargs
32223222
expected_kwargs = [
@@ -3339,7 +3339,7 @@ def update_on_premise_vantage_point(self, apm_domain_id, on_premise_vantage_poin
33393339
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}"
33403340
method = "PUT"
33413341
operation_name = "update_on_premise_vantage_point"
3342-
api_reference_link = ""
3342+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/OnPremiseVantagePoint/UpdateOnPremiseVantagePoint"
33433343

33443344
# Don't accept unknown kwargs
33453345
expected_kwargs = [
@@ -3462,7 +3462,7 @@ def update_script(self, apm_domain_id, script_id, update_script_details, **kwarg
34623462
resource_path = "/scripts/{scriptId}"
34633463
method = "PUT"
34643464
operation_name = "update_script"
3465-
api_reference_link = ""
3465+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Script/UpdateScript"
34663466

34673467
# Don't accept unknown kwargs
34683468
expected_kwargs = [
@@ -3588,7 +3588,7 @@ def update_worker(self, apm_domain_id, on_premise_vantage_point_id, worker_id, u
35883588
resource_path = "/onPremiseVantagePoints/{onPremiseVantagePointId}/workers/{workerId}"
35893589
method = "PUT"
35903590
operation_name = "update_worker"
3591-
api_reference_link = ""
3591+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/20200630/Worker/UpdateWorker"
35923592

35933593
# Don't accept unknown kwargs
35943594
expected_kwargs = [

src/oci/database/database_client.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7763,6 +7763,10 @@ def create_database(self, create_new_database_details, **kwargs):
77637763
:param str opc_request_id: (optional)
77647764
Unique identifier for the request.
77657765

7766+
:param bool opc_dry_run: (optional)
7767+
Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually
7768+
creating or updating a resource and is used only to perform validation on the submitted data.
7769+
77667770
:param obj retry_strategy: (optional)
77677771
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
77687772

@@ -7793,7 +7797,8 @@ def create_database(self, create_new_database_details, **kwargs):
77937797
"allow_control_chars",
77947798
"retry_strategy",
77957799
"opc_retry_token",
7796-
"opc_request_id"
7800+
"opc_request_id",
7801+
"opc_dry_run"
77977802
]
77987803
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
77997804
if extra_kwargs:
@@ -7804,7 +7809,8 @@ def create_database(self, create_new_database_details, **kwargs):
78047809
"accept": "application/json",
78057810
"content-type": "application/json",
78067811
"opc-retry-token": kwargs.get("opc_retry_token", missing),
7807-
"opc-request-id": kwargs.get("opc_request_id", missing)
7812+
"opc-request-id": kwargs.get("opc_request_id", missing),
7813+
"opc-dry-run": kwargs.get("opc_dry_run", missing)
78087814
}
78097815
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
78107816

src/oci/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
33
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44

5-
__version__ = "2.154.0"
5+
__version__ = "2.154.1"

0 commit comments

Comments
 (0)