-
Notifications
You must be signed in to change notification settings - Fork 281
/
CHANGELOG.rst
5169 lines (4278 loc) · 258 KB
/
CHANGELOG.rst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Change Log
~~~~~~~~~~
All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
====================
2.138.1 - 2024-11-12
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-alain-1 region
* Support for connection refresh in the GoldenGate service
* Support for secret compartment id in import and export operations of deployment wallet in the GoldenGate service
* Support for creating metadata only backups in the GoldenGate service
* Support for Llama 3.2 unit shape in Generative AI service
* Support for Llama 3.2 vision in Generative AI Inference service
* Support for Cohere CommandR response format in Generative AI Inference service
====================
2.138.0 - 2024-11-05
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the ap-seoul-2 region
* Support for calling Oracle Cloud Infrastructure services in the ap-suwon-1 region
* Support for calling Oracle Cloud Infrastructure services in the ap-chuncheon-2 region
* Support for MFA Enablement v2 in the Identity Domains service
* Support for starting, stopping and updating min/max executor count for SQL Endpoints in the Data Flow service
* Support for customer message in the Customer Incident Management Service
* Support for REJECTED limitStatus in the Customer Incident Management Service
Fixed
-----
* Issue with using `OkeWorkloaIdentityResourcePrincipalSigner` after the PyJWT upgrade to 2.4.0 introduced int OCI Python SDK `2.137.1`
* UserWarning being emitted from Cryptography 43.x
Breaking
--------
* The operations `get_status` and `get_csi_number` were removed from the IncidentClient in the Customer Incident Management Service
* The property `service_categories` was removed from the model `IncidentResourceType` in the Customer Incident Management Service
* The properties `service_category` and `issue_type` were removed from the model `ServiceCategories` in the Customer Incident Management Service
* The retry strategy for getting the X509 token from Identity service was modified and is now protected via circuit breaker
====================
2.137.1 - 2024-10-29
====================
Added
-----
* Support for L3IP (Layer 3 IP) listeners in the Network Load Balancing service
* Support for overriding an existing add-on installation in the Kubernetes Engine service
====================
2.137.0 - 2024-10-22
====================
Added
-----
* Support for resource locking in the File storage service
* Support for customer managed keys via Azure key vault and Amazon Web Services key vault in the Database service
* Support for generated tokens on create secret operations in the Identity Domains service
* Support for creating and updating Amazon Web Services asset-sources, EC2 and EBS assets in the Cloud Bridge service
* Support for listing Amazon Web Services regions which are available for discovery and migration in the Cloud Bridge service
* Support for model backup retention and restore in the Datascience service
* Support for host capacity planning for host IO metrics in the Operations Insight service
* Support for FastConnect redundancy in the Compute service
* Support for create, publish, clone and delete operations on runbooks in the Fleet Application Management service
* Support for platform configurations and metadata management in the Fleet Application Management service
* Support for management of compliance policy rules in the Fleet Application Management service
* Support for compliance report details based on compliance policy in the Fleet Application Management service
* Support for administrative settings like auto discovery frequency in the Fleet Application Management service
Changed
-------
* The vendored library PyJWT was upgraded from version `1.7.1` to version `2.4.0`
Breaking
--------
* The operation `update_plugin` was removed from the `OcbAgentSvcClient` client in the Cloud Bridge service
* The property `discovery_schedule_id` was removed from the model `UpdateVmWareAssetSourceDetails` in the Cloud Bridge service
* The constant `METRIC_NAME_HOST_CONTAINERS` and its value `HOST_CONTAINERS` was removed from the list of allowed values for the parameter `metric_name` in the model `HostPerformanceMetricGroup` in the Operations Insight service
* The parent class of model `HostContainers` was changed from `HostPerformanceMetricGroup` to `HostConfigurationMetricGroup` and list of allowed values for the parameter `metric_name` was changed to `HOST_PRODUCT`, `HOST_RESOURCE_ALLOCATION`, `HOST_MEMORY_CONFIGURATION`, `HOST_HARDWARE_CONFIGURATION`, `HOST_CPU_HARDWARE_CONFIGURATION`, `HOST_NETWORK_CONFIGURATION`, `HOST_ENTITES`, `HOST_FILESYSTEM_CONFIGURATION`, `HOST_GPU_CONFIGURATION`, `HOST_CONTAINERS` in the Operations Insight service
====================
2.136.0 - 2024-10-15
====================
Added
-----
* Support for open id connect discovery in the Oracle Kubernetes Engine service
* Support for DNS security extensions (DNSSEC) in the DNS service
* Support for restoring delta between backups to a new volume in the Block Volume service
* Support for cross region backup copy and replication for volumes encrypted with customer keys in the Block Volume service
* Support for list operation on deployment environments in the GoldenGate service
* Support for defining environment types for deployments in the GoldenGate service
Fixed
-----
*
Fixed an issue with decoding UTF-8 characters in response models
* Removed model files which were not accessible programmatically
Breaking
--------
* Response type changed to `oci.golden_gate.models.DeploymentBackup` for operations `copy_deployment_backup` and `create_deployment_backup` in the GoldenGate service
====================
2.135.2 - 2024-10-08
====================
Added
-----
* Support for OCI Secure Desktops service
* Support for window preferences on cloud automation tooling updates on ExaCC and ExaCS VM clusters in the Database service
* Support for maintenance windows in the Stack Monitoring service
* Renamed service OCI Container Engine to OCI Kubernetes Engine
* Support for password as an optional parameter on creating admin users in the Fusion Apps as a Service
* Support for IAM credentials for autonomous databases in the Operations Insights service
Security
-------
* The upper bound for `cryptography` dependency has changed to versions less than `46.0.0`
====================
2.135.1 - 2024-10-01
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the us-somerset-1 region
* Support for calling Oracle Cloud Infrastructure services in the us-thames-1 region
* Support for Security Attribute service
* Support for Zero Trust Packet Routing service
* Support for zero trust packet routing security attributes in the Database service
* Support for zero trust packet routing security attributes in the Networking service
* Support for zero trust packet routing security attributes in the Network Load Balancer service
* Support for disaster recovery failover in the Integration Cloud service
====================
2.135.0 - 2024-09-24
====================
Added
-----
* Support for Generative AI Agent service
* Support for undeleting autonomous databases in the Database service
* Support for assigning key versions for the pluggable databases in the Database service
* Support for lifecycle states on list autonomous database operation in the Database service
* Support for data masking parameter on list refresh activity operation in the Fusion Application as a Service
* Support for configuring custom endpoints on an instance in the Integration Cloud service
* Support for updating channel schedules on instance create operation in the Analytics service
* Support for ExaCC via management agents in the Operations Insights service
* Support for appending and deleting allowed SQLs from SQL firewall policies in the Data Safe service
* Support for alarm suppressions with compartment targets and recurring schedules in the Monitoring service
Breaking
--------
* A new value called `UNKNOWN_ENUM_VALUE` has been added to the enums of the parent class when a subclass is in the responses returned from services. If a service returns a value that cannot be recognized by the version of the SDK, then the enum will be set to this value. Previously this would throw an exception.
* Property `dimensions` changed from required to optional in model `AlarmSuppressionSummary` in the Monitoring service
* Value `STANDBY` was removed from the property `lifecycle_state` in models `IntegrationInstance` and `IntegrationInstanceSummary` in the Integration Cloud service
====================
2.134.0 - 2024-09-17
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-crissier-1 region
* Support for dedicated AI cluster unit shapes in the Generative AI service
* Support for ticket numbers when creating access requests in the Managed Access service
* Support for 23ai database, cloud VM clusters and VM cluster patching in the Exadata Fleet Update service
* Support for text to speech feature in the AI Speech service
* Support for notifications and transfer of capacity requests in the OCI Control Center service
Breaking
--------
* Parameter `occ_customer_group_id` is now mandatory for methods `list_internal_namespace_occ_overviews`, `list_occ_availability_catalogs_internal`, `list_occ_capacity_requests_internal` in the OCI Control Center service
2.133.0 - 2024-08-27
====================
Added
-----
* Support for Delegate Access Control service
* Support for upgrade and downgrade of shapes of high performance mount targets in the File Storage service
* Support for private endpoints in the Object Storage service
* Support for create, update, list and delete operations on scheduling policies and scheduling windows in the Database service
* Support for specifying domains while creating data guard associations in the Database service
* Support for provision of developer autonomous databases in the Database service
* Support for upgrade of developer autonomous databases to paid autonomous databases in the Database service
* Support for scheduling plans, actions, execution windows and execution actions for maintenance scheduling in the Database service
* Support for cross-region replication of virtual vaults in the Key Management service
* Support for listing all active service summaries in the Announcements service
* Support for VMware major and minor version upgrades in VMware Solution service
* Support for updating protected database subscriptions in the Autonomous Recovery service
* Support for health insurance id as an allowed document type in the Document Understanding service
* Support for advanced database management features for autonomous databases in the Database Management service
* Support for propagating request ids to load balancer servers in the Load balancer service
* Support for automatic update orders in Fusion Application as a Service
Breaking
--------
* Constant `DOCUMENT_TYPE_INSURANCE_CLAIM` was renamed to `DOCUMENT_TYPE_HEALTH_INSURANCE_ID` in models `AnalyzeDocumentDetails` and `GeneralProcessorConfig` in the Document Understanding service
* Property `document_id` was removed from model `DetectedDocumentType` in the Document Understanding service
* Property `tenancy_id` was removed from models `DocumentClassificationFeature` and `DocumentKeyValueExtractionFeature` in the Document Understanding service
====================
2.132.0 - 2024-08-20
====================
Added
-----
* Support for Fleet Application Management service
* Support for creating maintenance runs using autonomous database software images in the Database service
* Support for Object Storage buckets, Oracle databases, Oracle databases on exascale Infrastructure, autonomous container databases, and autonomous container databases on Cloud at Customer in the Disaster Recovery service
* Support for multiple sharing modes in the OCI Cache service
* Support for extended data retention periods for instances in the Integration Cloud service
* Support for SQL watch and lifecycle management in the Database management service
* Support for identity domains and feature sets in the Analytics Cloud service
* Support for automatically extending the storage space for MySQL DB systems in pre-defined increments in the MySQL Database service
Breaking
--------
* Enums `protocol` in model `BasicDatabaseConnectionStringDetails`, `connector_type` in model `ConnectorDetails` and `DatabaseConnectionStringDetails`, `license_model` in model `DatabaseDiagnosticsAndManagementFeatureConfiguration`, `feature_status` in model `DatabaseFeatureConfiguration` in the Database management service will now follow forward compatibility rules - https://docs.oracle.com/en-us/iaas/tools/python/latest/forward-compatibility.html instead of raising `ValueError` for unknown enum values
* The property `dr_plan_execution_type` has been removed from the API `list_dr_plan_executions` in the Disaster Recovery service
====================
2.131.1 - 2024-08-13
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-4 region
* Support for viewing subscription limits in the Limits service
* Support for TCP idle timeout on network load balancer create and update operations in the Network Load Balancing service
* Support for creating integration instances of type Healthcare in the Integration Cloud service
Changed
-------
* The upper-bound for the circuitbreaker library was updated from `2.0.0` to `3.0.0` for Python versions 3.7 and above
====================
2.131.0 - 2024-08-06
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-riyadh-1 region
* Support for vertically scaling a Database system in the PostgreSQL service
* Support for flex shapes in the PostgreSQL service
* Support for new fork repository feature in the Source Code Management service
* Support for Developer Charts in the Source Code Management service
* Support for pull requests and merge in Source Code Management service
* Support for limiting custom and versioned custom software source content to the latest package versions in the OS Management service
* Support for Open Data Hub (ODH) patching in a staged manner in the Big Data service
* Support for Autoscale Memory Utilization in the Big Data service
* Support for Resource Principal configuration feature in the Big Data service
* Support for a new optional parameter compartment ID in the Java Management service
* Support for Agent Installer in the Java Management service
* Support for Java migration analysis request of deployed applications in the Java Management service
* Support for JmsPlugin in the Java Management service
* Support for improved cryptographic analysis result listing in the Java Management service
* Support for improved fleet agent configuration setting in the Java Management service
* Support for improved Java migration analysis result listing in the Java Management service
* Support for improved library usage summary in the Java Management service
* Support for improved performance tuning analysis result listing in the Java Management service
* Support for improved work request listing in the Java Management service
Breaking
--------
* Parameter `credentials` is now required for model `CreateDbSystemDetails` in the PostgreSQL service
====================
2.130.0 - 2024-07-30
====================
Added
-----
* Support for cluster placement groups on get operations in the Database service
* Support for baseline metric for imported resources and metric extensions in the Stack Monitoring service
* Support for implicit JIT and group membership provisioning during OpenID connect flow in the Identity Domains service
* Support for realtime speech and customizations in the AI Speech service
* Support for self-service instance maintenance API in the Compute service
* Support for GoldenGate suspend phase in the Database Migration service
* Support for creating custom alert policies in the Data Safe service
* Support for tunnel inspection in the Network firewall service
* Support for diagnostics collection preferences and custom GI images in the Exadata Fleet Update service
* Support for Resource Principals v2.1.2
Breaking
--------
* Property `service_principals` was removed from model `IdentityPropagationTrust` in the Identity Domains service
====================
2.129.4 - 2024-07-23
====================
Added
-----
* Support for subscription id attribute in Cloud Exadata Infrastructure and Cloud VM Clusters in the Database service
* Support for SQL and FTP monitors on create and update operations in the Application Performance Monitoring service
* Support for MySQL Heatwave database systems in the Operations Insights service
* Support for creating and updating schedules for user assessments and security assessments in the Data Safe service
* Support for creating and updating sensitive data models of the tables for discovery in the Data Safe service
* Support for additional optional parameters on autonomous database create and update operations in the Database service
Changed
-------
* The `INSTANCE_METADATA_URL_CERTIFICATE_RETRIEVER_RETRY_STRATEGY` was changed to retry a max of 3 times for max of 3 minutes and a fixed retry inerval of 30 seconds, and retry on 404, 429 and 5xx errors
====================
2.129.3 - 2024-07-16
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-2 region
====================
2.129.2 - 2024-07-09
====================
Added
-----
* Support for cost management of shared resources in the Usage service
* Support for creating new databases with oracle key vault on Exadata Cloud at Customer in the Database service
* Support for confirming key store details on Exadata Cloud at Customer in the Database service
* Support for Download Manager in the Object Storage service
====================
2.129.1 - 2024-07-02
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the `ap-singapore-2` region
* Support for additional parameters in list and delete operations in the File Storage service
* Support for host capacity planning to analyze disabled and deleted resources in the Operations Insights service
* Support for title and description updates in the Capacity Management service
* Support for listing parameters for migrations in the Database Migration service
* Support for Oracle exadata database service on exascale Infrastructure (ExaDB-XS) in the Database service
====================
2.129.0 - 2024-06-25
====================
Added
-----
* Support for MySQL to MySQL homogeneous migrations in the Database Migration service
* Support for manual cross-region backups in the MySQL Heatwave service
Breaking
--------
* The models AdvisorSettings, Agent, AgentCollection, AgentImageCollection, AgentImageSummary, AgentSummary, AwsS3DataTransferMediumDetails, AwsS3Details, ChangeAgentCompartmentDetails, ConnectDescriptor, CreateAdvisorSettings, CreateAwsS3Details, CreateConnectDescriptor, CreateDataPumpSettings, CreateDataTransferMediumDetails, CreateDatabaseLinkDetails, CreateDumpTransferDetails, CreateGoldenGateDetails, CreateGoldenGateHub, CreateGoldenGateServiceDetails, CreateGoldenGateServiceDetails, CreatePrivateEndpoint, CreateSshDetails, CreateVaultDetails, DataPumpSettings, DataTransferMediumDetails, DataTransferMediumDetailsV2, DatabaseCredentials, DatabaseLinkDetails, DatabaseObject, DbLinkDataTransferMediumDetails, DumpTransferDetails, GoldenGateDetails, GoldenGateHub, GoldenGateServiceDetails, GoldenGateSettings, MigrationObjectSummary, NfsDataTransferMediumDetails, ObjectStorageDataTransferMediumDetails, PrivateEndpointDetails, SshDetails, UpdateAdvisorSettings, UpdateAgentDetails, UpdateAwsS3Details, UpdateConnectDescriptor, UpdateDataPumpSettings, UpdateDataTransferMediumDetails, UpdateDatabaseLinkDetails, UpdateDumpTransferDetails, UpdateGoldenGateDetails, UpdateGoldenGateHub, UpdateGoldenGateServiceDetails, UpdateGoldenGateSettings, UpdatePrivateEndpoint, UpdateSshDetails, UpdateVaultDetails, VaultDetails were removed in the Database Migration service
* The operations change_agent_compartment, delete_agent, get_agent, list_agent_images, list_agents, and update_agent were removed in the Database Migration service
* The composite operations delete_agent_and_wait_for_state and update_agent_and_wait_for_state were removed in the Database Migration service
* The properties `agent_id`, `source_container_database_connection_id`, `exclude_objects`, `include_objects` and `vault_details` were removed from the model `CloneMigrationDetails` in the Database Migration service
* The properties `admin_credentials`, `connect_descriptor`, `certificate_tdn`, `credentials_secret_id`, `database_id`, `database_type`, `is_dedicated`, `manual_database_sub_type`, `private_endpoint`, `replication_credentials`, `ssh_details` and `vault_details` were removed in the model `Connection` in the Database Migration service
* The properties `database_id`, `database_type`, `is_dedicated`, and `manual_database_sub_type` were removed in the model `ConnectionSummary` in the Database Migration service
* The properties `admin_credentials`, `certificate_tdn`, `connect_descriptor`, `database_id`, `database_type`, `manual_database_sub_type`, `private_endpoint`, `replication_credentials`, `ssh_details`, `tls_keystore`, `tls_wallet` and `vault_details` were removed from the model `CreateConnectionDetails` in the Database Migration service
* The properties `advisor_settings`, `agent_id`, `csv_text`, `data_transfer_medium_details`, `data_transfer_medium_details_v2`, `datapump_settings`, `dump_transfer_details`, `exclude_objects`, `golden_gate_details`, `golden_gate_service_details`, `include_objects`, `source_container_database_connection_id` and `vault_details` were removed in the model `CreateMigrationDetails` in the Database Migration service
* The properties `map_parallelism`, `max_apply_parallelism`, and `min_apply_parallelism` were removed in the models `Replicat`, `UpdateReplicat`, and `CreateReplicat` in the Database Migration service
* The properties `advisor_settings`, `agent_id`, `credentials_secret_id`, `data_transfer_medium_details`, `data_transfer_medium_details_v2`, `datapump_settings`, `dump_transfer_details`, `exclude_objects`, `golden_gate_details`, `golden_gate_service_details`, `include_objects`, `source_container_database_connection_id` and `vault_details` were removed in the model `Migration` in the Database Migration service
* The properties `csv_text` and `items` were removed in the model `MigrationObjectCollection` in the Database Migration service
* The properties `agent_id`, `source_container_database_connection_id` and `vault_details` were removed in the model `MigrationSummary` in the Database Migration service
* The properties `admin_credentials`, `certificate_tdn`, `connect_descriptor`, `database_id`, `private_endpoint`, `replication_credentials`, `ssh_details`, `tls_keystore`, `tls_wallet` and `vault_details` were removed from the model `UpdateConnectionDetails` in the Database Migration service
* The properties `advisor_settings`, `agent_id`, `data_transfer_medium_details`, `data_transfer_medium_details_v2`, `datapump_settings`, `dump_transfer_details`, `exclude_objects`, `golden_gate_details`, `golden_gate_service_details`, `include_objects`, `source_container_database_connection_id` and `vault_details` were removed in the model `UpdateMigrationDetails` in the Database Migration service
* Allowed values `ODMS_VALIDATE_GG_SERVICE` and `ODMS_INITIALIZE_GGS` were removed from property `wait_after` in the models `StartMigrationDetails` and `ResumeJobDetails` in the Database Migration service
* Allowed values `ODMS_VALIDATE_GG_SERVICE` and `ODMS_INITIALIZE_GGS` were removed from property `current_phase` in the model `MigrationJobProgressResource` in the Database Migration service
* Allowed values `ODMS_VALIDATE_GG_SERVICE` and `ODMS_INITIALIZE_GGS` were removed from property `current_phase` in the model `MigrationJobProgressSummary` in the Database Migration service
* Allowed values `ODMS_VALIDATE_GG_SERVICE` and `ODMS_INITIALIZE_GGS` were removed from property `name` in the models `MigrationPhaseSummary` and `PhaseStatus` in the Database Migration service
* Allowed values `ODMS_VALIDATE_GG_SERVICE` and `ODMS_INITIALIZE_GGS` were removed from property `wait_after` in the model `Migration` in the Database Migration service
====================
2.128.2 - 2024-06-18
====================
Added
-----
* Support for public connection urls and public endpoints for autonomous databases in the Database service
* Support for insurance claim document type in the AI Document service
* Support for Microsoft IIS discovery and monitoring in the Stack Monitoring service
====================
2.128.1 - 2024-06-11
====================
Added
-----
* Support for 23ai based databases in Globally Distributed Database service
* Support for testing span enrichment groups in Application Performance Monitoring service
* Support for subscription suspension and termination orders in Fusion Apps as a Service
* Support for time first occurred and time last occurred for resource sightings in Cloud Guard service
* Support for alarm summary, notification title, and slack duration on create and update operations in Monitoring service
* Support for message creation timestamp in Queue service
====================
2.128.0 - 2024-06-04
====================
Added
-----
* Support for creating cross-region autonomous data guards in the Database service
* Support for listing autonomous database peers in the Database service
* Support for dedicated AI clusters in the Generative AI service
* Support for Llama chat and Lora Fine-Tuning method in the Generative AI service
* Support for adding and removing locks for connections, deployments, and deployment backups in the GoldenGate service
* Support for additional connection types for deployments and connections in the GoldenGate service
Breaking
--------
* The possible allowed values `OPENAI` and `DALLE3` were removed from the property runtime_type in the models LlmInferenceResponse, CohereLlmInferenceResponse, and LlamaLlmInferenceResponse in the Generative AI service
* The property message was removed from the model CohereMessage in the Generative AI service
* The property chat_request was made required in the model ChatDetails in the Generative AI service
====================
2.127.0 - 2024-05-28
====================
Added
-----
* Support for Demand Signal service
* Support for external database connectors in the Database service
* Support for monitoring standby databases in the Database Management service
* Support for resource overviews in the Capacity Management service
* Support for optional parameters in the download API in the Java Management Service Downloads service
Breaking
--------
* The operation list_occ_availabilities can return any string for the params resource_type and workload_type in the OCI Control Center service
* The model OccCapacityRequestComputeDetails has been removed in the OCI Control Center service
* The params resource_type and workload_type can accept any string in the models OccAvailabilitySummary and OccCapacityRequestBaseDetails in the OCI Control Center service
====================
2.126.4 - 2024-05-21
====================
Added
-----
* Support for the Resource Scheduler service
* Support for Bring Your Own Container (BYOC), custom networking and graceful termination of pipelines in the Data Science service
* Support for backup and replacement of master, utility, and edge nodes in the Big Data service
* Support for nested resource principal in the Data Science service
====================
2.126.3 - 2024-05-14
====================
Added
-----
* Support for the Marketplace Private Offer service
* Support for resizing local file systems in the Database service
* Support for PPv2 (Proxy Protocol version 2) in the Load Balancer service
* Support for custom return path for sent emails in the Email Delivery service
* Support for session resumption in the Load Balancer service
====================
2.126.2 - 2024-05-07
====================
Added
-----
* Support for resizing of local file systems in the Database service
* Support for adding user defined pause group in disaster recovery plan in the Disaster Recovery service
* Support for OS patching configs in the Big Data service
* Support for IP inventory and notification feature in the Networking service
* Support for accidental delete protection for load balancers, load balancer listeners, and load balancer backends in the Load Balancer service
* Support for backend max connections for load balancers in the Load Balancer service
* Support for listener max connections for load balancers in the Load Balancer service
====================
2.126.1 - 2024-04-30
====================
Added
-----
* Support for enabling unified auditing for DBHome in the Database service
* Support for listing minor Grid Infrastructure (GI) versions available for custom GI software image creation in the Database service
* Support for network security groups in the Recovery Cloud service
* Support for lineage metadata import in the Data Catalog service
* Support for workspace properties in workspace create and update operations in the Data Integration service
* Support for monitoring ExaCC databases in the Database Management service
* Support for validations on target and policy before the masking process in the Data Safe service
====================
2.126.0 - 2024-04-23
====================
Added
-----
* Support for the Cluster Placement Groups service
* Support for new optional parameter for managing approval template in the Managed Access service
* Support for cluster placement groups in the Compute service
* Support for replacing boot volume for virtual machines in the Compute service
* Support for assigning a cluster placement group to boot and block volumes in the Block Storage service
* Support for container workload integration in the Cloud Guard service
* Support for instances in OCI and 3rd party clouds in the OS Management service
Breaking
--------
* Support for default retries on the operations of the Managed Access service
* The Application Migration service was decommissioned and removed
* The property `instance_location` was removed from the method `get_managed_instance_analytic_content` and `summarize_managed_instance_analytics` in the `ReportingManagedInstanceClient` in the OS Management service
* The property `display_name` was removed from the method `list_software_packages` in the `SoftwareSourceClient` in the OS Management service
* The property `AdvisoryType` was removed from the method `list_managed_instance_errata` in the `ManagedInstanceClient` in the OS Management service
* The type of property `Architecture` was changed from `string` to `SoftwarePackageArchitecture` in the models `SoftwarePackage` and `SoftwarePackageSummary` in the OS Management service
====================
2.125.3 - 2024-04-16
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-3 region
* Support for new Image resource for an Autonomous Database in the Database service
* Support for creating Autonomous Container Database using Autonomous Database Software Image in the Database service
* Support for new dedicated AI cluster unit shape in the Generative AI service
* Support for Chat API for LLM models in the Generative AI service
* Support for network security groups (NSGs) in the Redis service
* Support for custom public egress on model deployments in the Data Science service
* Support for a new data transfer parameter for AWS S3 bucket in the Database Migration service
* Support for Oracle Process Automation instance start and stop operations in the Process Automation service
* Support for healthcare Natural Language Processing (NLP) in the AI Language service
* Support for identification and de-identification of Private Health Information (PHI) service in the AI Language service
* Support for multilingual content for using machine learning models in the AI Language service
* Support for usage statements in cost management in the Usage service
====================
2.125.2 - 2024-04-09
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the ap-dcc-gazipur-1 region
* Support for the DNS-based backend health check in the Network Load Balancer service
* Support for Fail Open in the Network Load Balancer service
* Support for adding and updating Instant failover in the Network Load Balancer service
* Support for adding and updating source type and resource category for resource types in the Stack Monitoring service
* Support for searching resources based on resource category, source type, multiple compartments, multiple lifecycle states in the Stack Monitoring service
* Support for filtering listed resources based on lifecycle status in the Stack Monitoring service
* Support for creating tasks with new config parameters in the Stack Monitoring service
* Support for Composite Resource Principal integration in the Data Flow service
====================
2.125.1 - 2024-04-02
====================
Added
-----
* Support for assigned private IP and single stack IPV6 feature for Network Load Balancer Service
* Support for Configuration API in Email Delivery Service
* Support for the status field in creating data source resource for Cloud Guard Service
* Support for TLSv1.3 in Load Balancer Service
* Support for sending mails via HTTPS for Email Delivery Service
====================
2.125.0 - 2024-03-26
====================
Added
-----
- Support for creating and updating a refreshable clone with auto-refresh for an Autonomous Database in the Database service
- Support for symmetric hashing in the Network Load Balancer service
- Support for creating and deploying helm command specifications in the DevOps Service
- Support for uninstalling helm chart when deleting an Oracle Kubernetes Stage through the DevOps Service
- Support for collecting metrics and filter plugin with Unified Monitoring Agent (UMA) in the Logging service
- Support for reading logs from head position after agent restart in the Logging service
- Support for monitoring MySQL HeatWave clusters in Database Management Service
- Support for multiple severities in an alarm in the Monitoring service
Breaking
--------
- The properties `DisplayName` and `Description` were made required in the model `CreateUnifiedAgentConfigurationDetails` in the Logging service
- The property `RecordInput` was made required in the model `OperationalMetricsSource` in the Logging service
====================
2.124.2 - 2024-03-19
====================
Added
-----
* Support for standalone Oracle HTTP server discovery and monitoring in the Stack Monitoring service
* Support for attribute management for traces in the Application Performance Monitoring service
* Support for async jobs and document translations in the AI language service
====================
2.124.1 - 2024-03-12
====================
Added
-----
* Support for new development license type on dedicated infrastructure in the Database service
* Support for placement parameters on Autonomous Container Database create operation in the Database service
* Support for autoscaling on model deployment in the Data Science service
====================
2.124.0 - 2024-03-05
====================
Added
-----
* Support for Linux capabilities configuration for the containers in the Container Instances service
* Support for service platforms in the Oracle Store Platform Gateway service
* Support for whisper models and delete job operation in the Speech service
* Support for new SQL insight content types in news reports in the Operations Insights service
* Support for launching virtual machines with multiple volumes in the Compute service
Breaking
--------
* The property `CapacityPlanningResources` has been made optional in the model `NewsContentTypes` in the Operations Insights service
====================
2.123.0 - 2024-02-27
====================
Added
-----
* Support for specifying dialog version when creating skills entities in the Digital Assistant service
* Support for bulk creation of skill entities in the Digital Assistant service
* Support for training skill query entities in the Digital Assistant service
* Support for cascading delete of skill custom entities in the Digital Assistant service
* Support for creating autonomous dataguard associations in the Database service
* Support for auto generation of secrets in the Secret Management service
* Support for cluster placement groups in Cloud Exadata Infrastructure in the Database service
* Support for retrieving previous logs of the container in the Container Instances service
* Support for queue sources in the Connector Hub service
* Support for automatic key rotation in the Key Management Service
* Support for downloading operator activity reports and assignment healthchecks in the Operator Access Control service
* Support for operator requesting access in the future time in the Operator Access Control service
* Support for forwarding hypervisor logs in the Operator Access Control service
* Support for asynchronous data asset export in the Data Catalog service
* Support for launch with multiple volumes for virtual machines in the Compute Service
* Support for tagging in Database Management service
Breaking
--------
* Support for default retries on operations of the Connector Hub service
* Property `max_cpu_core_count` was removed from models `UpdateAutonomousDatabaseDetails`, `CreateRefreshableAutonomousDatabaseCloneDetails`, `CreateCrossRegionDisasterRecoveryDetails`, `CreateCrossRegionAutonomousDatabaseDataGuardDetails`, `CreateAutonomousDatabaseFromBackupTimestampDetails`, `CreateAutonomousDatabaseFromBackupDetails`, `CreateAutonomousDatabaseDetails`, `CreateAutonomousDatabaseCloneDetails`, `CreateAutonomousDatabaseBase`, `AutonomousDatabase`, `AutonomousDatabaseSummary` in the Database service
* Property `key_id` in model `CreateSecretDetails` is made required in the Vault service
* Model `DatabaseConnectionCredentailsByName` was renamed to `DatabaseConnectionCredentialsByName` in the Database service
====================
2.122.0 - 2024-02-20
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the me-dcc-doha-1 region
* Support for Secure Desktops service
* Support for enabling and disabling Simultaneous Multithreading (SMT) for virtual machines in the Compute service
* Support for Bring Your Own Container Jobs (BYOC v2) in the Data Science service
* Support for expanded language translation in the AI Language service
* Support for additional flags for ignoring transliteration and text length to be considered for determining dominant language in the AI Language service
Breaking
--------
* The model `PreTrainedPhiModelDetails` was removed in the AI Language service
* The field `system_tags` has changed type from `dict(str, object)` to `dict(str, dict(str, object))` in the models `endpoint`, `endpoint_summary`, `model`, `model_summary`, `project`, and `project_summary` in the AI Language service
====================
2.121.1 - 2024-02-13
====================
Added
-----
* Support for adding automatic backups during cross region operations and disaster recovery in the Autonomous Database service
* Support for overlapping CIDR in network path analyzer in the Virtual Network Monitoring service
* Support for additional attributes in entity and topology in the Log Analytics service
* Support for historic collection and log type while creating object collection rules in the Log Analytics service
* Support for position aware parsers in the Log Analytics service
* Support for filtering log sources, detection rules and scheduled tasks based on target service in the Log Analytics service
* Support for additional recall and release attributes in the Log Analytics service
* Support for opc-meta-properties header while uploading log events in the Log Analytics service
* Support for Generative AI Inference service
====================
2.121.0 - 2024-02-06
====================
Added
-----
* Support for the Globally Distributed Database service
* Support for secret auto-rotation in the Secret Management service
* Support for dedicated key management in the Key Management service
* Support for resource locking operations in the Digital Media service
* Support for data sources, including prometheus emitter, in the Management Agent service
* Support for Bring Your Own Certificates (BYOC) in the MySQL HeatWave Database service
Breaking
--------
* Models `MediaWorkflowJobFact`, `MediaWorkflowJobFactCollection` and `MediaWorkflowJobFactSummary` were removed from the Digital Media service
* Methods `get_media_workflow_job_fact` and `list_media_workflow_job_facts` were removed from the Digital Media service
====================
2.120.0 - 2024-01-30
====================
Added
-----
* Support for OCI Control Center service
* Support for giro value set for address rules in the Oracle Store Platform service
* Support for giro in tax information for subscriptions in the Oracle Store Platform service
* Support for REST connectivity with Oath2 in the Data Integration service
* Support for resolver rules limit increase in the DNS service
* Support for named credentials in the Database Management service
Breaking
--------
* Default retry disabled on the operations of the DNS service
====================
2.119.1 - 2024-01-23
====================
Added
-----
* Support for the Generative AI service
* Support for additional currencies and countries for paid listings in the Marketplace service
* Support for process sets in the Stack Monitoring service
====================
2.119.0 - 2024-01-16
====================
Added
-----
* Support for resource id filter on the service work requests in the Container Instances service
* Support for polyglot vulnerability audit in the Application Dependency Management service
* Support for create, read, and update operations on peer databases in the Data Safe service
* Support for dimension specific alarm suppressions in the Monitoring service
* Support for calculating audit volume in the Data Safe service
* Support for viewing schema accesses in data safe user assessments in the Data Safe service
* Support for security feature usage in the Data Safe service
* Support for viewing the top security findings in data safe security assessments in the Data Safe service
* Support for additional filters in list findings operation in the Data Safe service
* Support for updating risk level of the specified finding in the Data Safe service
Breaking
--------
* Method `create_vulnerability_audit_and_wait_for_state` now waits on `oci.adm.models.VulnerabilityAudit` instead of `oci.adm.models.WorkRequest` in the Application Dependency Management service
====================
2.118.2 - 2024-01-11
====================
Fixed
-----
* Removed dependency on python-pkcs11
====================
2.118.1 - 2024-01-09
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the sa-valparaiso-1 region
* Support for creation of up to 60 containers per container instance in the Container Instances service
* Support for Oracle GoldenGate discovery and monitoring in the Stack Monitoring service
* Support for GoldenGate stream analytics in the GoldenGate service
* Support for backup work requests in MySQL Heatwave service
* Support for create, update, delete and list operations on premise vantage points in the Application Performance Monitoring service
* Support for create, update, delete and list operations on workers in the Application Performance Monitoring service
* Support for host capacity planning for compute instances and host unallocated metrics in the Operations Insights service
====================
2.118.0 - 2023-12-12
====================
Added
-----
* Support for changing compartments of configurations in the PostgreSQL service
* Support for granular policies including compartments, resource types, and recommendations in the Optimizer service
* Support for token exchanges in the Identity Domains service
* Support for Apache HTTP server discovery and monitoring in the Stack Monitoring service
* Support for resource locking in the Data Catalog service
* Support for concurrency throttling in the Data Integration service
* Support for reboot migrations for VMs on dedicated hosts in the Compute service
* Support for connection routing method settings and subnet update in the GoldenGate service
* Support for data discovery of commonly used sensitive types in the Data Safe service
* Support for incremental extract and updates to the workflows in the Data Integration service
Breaking
--------
* Support for default retries on the operations of the Optimizer service
====================
2.117.0 - 2023-12-04
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-dcc-zurich-1 and the sa-bogota-1 region
* Support for managing certificates of target Servers in the Golden Gate service
* Support for AWR Hub Snapshot ingest endpoints in the Operations Insights service
* Support for reducing false positives in the Application Dependency Management service
* Support for ARM shapes in the Data Science service
* Support for new optional parameters in the upload discovery data API in the Usage service
* Support for multiple clusters in a Software-Defined Data Centers (SDDCs) in the Ocvp service
* Support for No/Zero days backup in Autonomous Container Database in the Database service
* Support for provisioning a VM Cluster with a choice of Exadata image version in the Database service
* Support for updating ocpu/ecpu count, local storage , ACD count and Exadata storage on Cloud Autonomous VM Cluster and Autonomous VM Cluster in the Database service
* Support for serial console history in the Database service
* Support for Oracle Linux 8 version database system in the Database service
Breaking
--------
* Constants `CURRENT_SKU_HOUR`, `CURRENT_SKU_MONTH`, `CURRENT_SKU_ONE_YEAR`, `CURRENT_SKU_THREE_YEARS`, `NEXT_SKU_HOUR`, `NEXT_SKU_MONTH`, `NEXT_SKU_ONE_YEAR`, `NEXT_SKU_THREE_YEARS` were renamed to `CURRENT_COMMITMENT_HOUR`, `CURRENT_COMMITMENT_MONTH`, `CURRENT_COMMITMENT_ONE_YEAR`, `CURRENT_COMMITMENT_THREE_YEARS`, `NEXT_COMMITMENT_HOUR`, `NEXT_COMMITMENT_MONTH`, `NEXT_COMMITMENT_ONE_YEAR`, `NEXT_COMMITMENT_THREE_YEARS` respectively in models `CreateEsxiHostDetails`, `EsxiHost` and `EsxiHostSummary` in the Ocvp service
* Parameters `sddc_id`, `current_sku`, `next_sku`, were renamed to `cluster_id`, `current_commitment`, `next_commitment` in models `CreateEsxiHostDetails`, `EsxiHost` and `EsxiHostSummary` in the Ocvp service
* Parameters `non_upgraded_esxi_host_id` and `failed_esxi_host_id` were removed from model `CreateEsxiHostDetails` in the Ocvp service
* Constants `INITIAL_SKU_HOUR`, `INITIAL_SKU_MONTH`, `INITIAL_SKU_ONE_YEAR`, `INITIAL_SKU_THREE_YEARS` were removed from model `CreateSddcDetails` in the Ocvp service
* Parameters `compute_availability_domain`, `instance_display_name_prefix`, `esxi_hosts_count`, `initial_sku`, `is_hcx_enabled`, `hcx_vlan_id`, `is_hcx_enterprise_enabled`, `workload_network_cidr`, `provisioning_subnet_id`, `vsphere_vlan_id`, `vmotion_vlan_id`, `vsan_vlan_id`, `nsx_v_tep_vlan_id`, `nsx_edge_v_tep_vlan_id`, `nsx_edge_uplink1_vlan_id`, `nsx_edge_uplink2_vlan_id`, `replication_vlan_id`, `provisioning_vlan_id`, `initial_host_shape_name`, `initial_host_ocpu_count`, `is_shielded_instance_enabled`, `capacity_reservation_id`, `datastores` were removed from model `CreateEsxiHostDetails` in the Ocvp service
* Models `SupportedSkuSummary` and `SupportedSkuSummaryCollection` were removed from the Ocvp service
====================
2.116.0 - 2023-11-14
====================
Added
-----
* Support for the PostgreSQL service
* Support for new operations in the Identity Domains service
* Support for enabling, disabling, and renewing SSL/TLS in the Big Data service
* Support for diarization in the AI Speech service
* Support for Capacity Topology API in the Compute service
Breaking
--------
* Model `MyRequest` in the Identity Domains service now allows only certain restricted values. For more information please see https://docs.public.oneportal.content.oci.oraclecloud.com/en-us/iaas/tools/python/latest/api/identity_domains/models/oci.identity_domains.models.MyRequest.html#oci.identity_domains.models.MyRequest
====================
2.115.1 - 2023-11-07
====================
Added
-----
* Support for Java Management Service Downloads
* Support for creating autonomous dataguard associations in the Database service
* Support for SaaS administrative user configurations for autonomous database in the Database service
* Support for macOS in the the Java Management service
* Support for distribution and management of deployment rule sets in the Java Management service
* Support for new download location of Oracle Java runtime binaries in the Java Management service
* Support for exporting data across regions in the Java Management service
Fixed
-----
* Fixed an issue in Resource Principals v2.1 introduced in the `v2.111.0` release
====================
2.115.0 - 2023-10-31
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the us-saltlake-2 region
* Support for disaster recovery of load balancers, network load balancers and file systems in the Disaster Recovery service
* Support for performing disaster recovery drills in the Disaster Recovery service
* Support for enterprise SKUs and extensibility in the Stack Monitoring service
* Support for metric extensions in the Stack Monitoring service
* Support for baseline and anomaly detection in the Stack Monitoring service
* Support for integration with Database Management service in the MySQL HeatWave service
* Support for MySQL database management in the Database Management service
* Support for database firewalls in the Data Safe service
Breaking
--------
* The properties `compartment_id` and `user_assessment_id` were removed from the `ProfileAggregation` model in the Data Safe service
====================
2.114.0 - 2023-10-24
====================
Added
-----
* Support for optional parameters for autonomous container database create and update operations in the Database service
* Support for maintenance runs for autonomous container database resources in the Database service
* Support for runtime unsupported connections for Oracle Database and MySQL database types in the Database Tools service
* Support for PostgreSQL, Generic JDBC connections with runtime unsupported in the Database Tools service
* Support for resource locking in the Database Tools service
* Support for proxy sessions for Oracle database connections in the Database Tools service
* Support for global active tables in the NoSQL Database service
* Support for application dependency management (ADM) remediation features in the Application Dependency Management service
* Support for additional connections types for Amazon Kinesis, Amazon Redshift, Elasticsearch, Generic, Google BigQuery, Google Cloud Storage and Redis Database resources in the Golden Gate service
* Support for optional parameters for the list alarms status operation in the Monitoring Service
Breaking
--------
* Support for retries by default on operations of the Database Tools service
* Support for retries by default on operations of the Monitoring service
* The paremeter `opc_retry_token` was removed from operations `change_database_tools_connection_compartment` and `change_database_tools_private_endpoint_compartment` in the Database Tools service
* Properties `user_password`, `connection_string` and `user_name` were removed from models `CreateDatabaseToolsConnectionOracleDatabaseDetails` and `CreateDatabaseToolsConnectionMySqlDetails` in the Database Tools service
====================
2.113.0 - 2023-10-17
====================
Added
-----
* Support for the Caching Service
* Support for the Marketplace Publisher service
* Support for higher limits for network firewalls in the Network Firewall service
* Support for exporting access request reports in the Lockbox service
* Support for storage mounts for jobs and notebooks in the Data Science service
* Support for unified agent operational metrics for the service configurations in the Logging Management service
Breaking
--------
* Property `approver_levels` in models `ApprovalTemplateSummary` changed from required to optional in the Lockbox service
* Properties `lockbox_partner` and `partner_compartment_id` in models `LockboxSummary` changed from required to optional in the Lockbox service
* Allowed values `ENUM_STRING` and `RQS_FILTER` were removed from the property `type` in model `Parameter` in the Logging service
* Properties `rqs_type` and `display_name` were removed from model `Parameter` in the Logging service
* Parameter `service_stage` was removed from operation `list_services` from the logging management client in the Logging service
* Properties `mapped_secrets`, `application_lists`, `url_lists`, `ip_address_lists`, `security_rules`, `decryption_rules` and `decryption_profiles` were removed from models `CreateNetworkFirewallPolicyDetails`, `NetworkFirewallPolicy` and `UpdateNetworkFirewallPolicyDetails` in the Network Firewall Service
* Property `sources` is replaced by `source_address` and property `destinations` is replaced by `destination_address` in models `DecryptionRuleMatchCriteria` and `SecurityRuleMatchCriteria` in the Network Firewall Service
* Property `applications` is replaced by `application` and property `urls` is replaced by `url` in model `SecurityRuleMatchCriteria`in the Network Firewall Service
====================
2.112.4 - 2023-10-10
====================
Added
-----
* Support for creating flow log type capture filters in Virtual Cloud Network service
* Support for export and import of metadata in Data Integration service
* Support for displaying resource usage information on autonomous vm cluster get operations in Database service
* Support for displaying resource usage information for the list of autonomous container databases on autonomous vm cluster get operations in Database service
* Support for pluggable database with enhanced features in Database service
* Support for exporting container and kubernetes app listings in Marketplace service
* Support for work request statuses for export container and kubernetes app listings in Marketplace service
====================
2.112.3 - 2023-10-03
====================
Added
-----
* Support for elastic resource pools in the Database service
* Support for private endpoints in the Data Science service
* Support for File System Service (FSS) as transfer medium for data export and import in the Database Migration service
* Support for new optional parameters on replica create, update and list operations in the MySQL Heatwave service
====================
2.112.2 - 2023-09-26
====================
Added
-----
* Support for listing compute performances and storage performances in Database service
* Support for private endpoints for external key managers in Key Management service
* Support for additional parameters in vaults and keys for external key managers in Key Management service
* Support for domains while creating integration instances in Oracle Integration Cloud service
====================
2.112.1 - 2023-09-12
====================
Added
------
* Support for SQL tuning sets in Database Management service
* Support for announcement chaining in Announcements service
* Support for automatic promotion of hosts in Stack Monitoring service
* Support for face detection in AI Vision service
* Support for change parameters on list character sets operation in Database Management service
* Support for displaying software sources attached to a managed instance group in OS Management service
* Support for Alloy configuration
Fixed
-----
* Fixed a bug in `EnvRptPathProvider` introduced after adding support for Resource Principals v3
====================
2.112.0 - 2023-09-05
====================
Added
-----
* Support for queue channels in the Queue Service
* Support for entity lineage retrieval and asynchronous glossary export in the Data Catalog service
* Support for filtering and sorting while listing work requests in the Container Instances service
* Support for the ability to create support requests for various support ticket types (TECH, LIMIT, ACCOUNT) in the Customer Incident Management Service
* Endpoint changed from https://incidentmanagement.{region}.{domainAndTopLevelDomain} to https://incidentmanagement.{region}.oci.{domainAndTopLevelDomain} (e.g. https://incidentmanagement.us-phoenix-1.oraclecloud.com to https://incidentmanagement.us-phoenix-1.oci.oraclecloud.com) in the Customer Incident Management Service
Breaking
--------
* The models `UserClient` and `UserClientCompositeOperations` were removed in the Customer Incident Management Service
* The parameter `availability_domain` was removed from models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
* The constants `REGION_DEV`, `REGION_SEA`, `REGION_INTEG_NEXT`, `REGION_INTEG_STABLE`, `REGION_PHX`, `REGION_IAD`, `REGION_FRA`, `REGION_EU_FRANKFURT_1`, `REGION_LHR`, `REGION_YYZ`, `REGION_NRT`, `REGION_ICN`, `REGION_BOM`, `REGION_GRU`, `REGION_SYD`, `REGION_ZRH`, `REGION_JED`, `REGION_AMS`, `REGION_KIX`, `REGION_MEL`, `REGION_YUL`, `REGION_HYD`, `REGION_YNY` were removed from the models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
* The constants `AVAILABILITY_DOMAIN_DEV_1`, `AVAILABILITY_DOMAIN_DEV_2`, `AVAILABILITY_DOMAIN_DEV_3`, `AVAILABILITY_DOMAIN_INTEG_NEXT_1`, `AVAILABILITY_DOMAIN_INTEG_STABLE_1`, `AVAILABILITY_DOMAIN_SEA_AD_1`, `AVAILABILITY_DOMAIN_SEA_AD_2`, `AVAILABILITY_DOMAIN_SEA_AD_3`, `AVAILABILITY_DOMAIN_PHX_AD_1`, `AVAILABILITY_DOMAIN_PHX_AD_2`, `AVAILABILITY_DOMAIN_PHX_AD_3`, `AVAILABILITY_DOMAIN_US_ASHBURN_AD_1`, `AVAILABILITY_DOMAIN_US_ASHBURN_AD_2`, `AVAILABILITY_DOMAIN_US_ASHBURN_AD_3`, `AVAILABILITY_DOMAIN_US_ASHBURN_AD_4`, `AVAILABILITY_DOMAIN_EU_FRANKFURT_1_AD_1`, `AVAILABILITY_DOMAIN_EU_FRANKFURT_1_AD_2`, `AVAILABILITY_DOMAIN_EU_FRANKFURT_1_AD_3`, `AVAILABILITY_DOMAIN_UK_LONDON_1_AD_1`, `AVAILABILITY_DOMAIN_UK_LONDON_1_AD_2`, `AVAILABILITY_DOMAIN_UK_LONDON_1_AD_3`, `AVAILABILITY_DOMAIN_CA_TORONTO_1_AD_1`, `AVAILABILITY_DOMAIN_AP_TOKYO_1_AD_1`, `AVAILABILITY_DOMAIN_AP_SEOUL_1_AD_1`, `AVAILABILITY_DOMAIN_AP_MUMBAI_1_AD_1`, `AVAILABILITY_DOMAIN_SA_SAOPAULO_1_AD_1`, `AVAILABILITY_DOMAIN_ME_JEDDAH_1_AD_1`, `AVAILABILITY_DOMAIN_AP_OSAKA_1_AD_1`, `AVAILABILITY_DOMAIN_AP_SYDNEY_1_AD_1`, `AVAILABILITY_DOMAIN_EU_ZURICH_1_AD_1`, `AVAILABILITY_DOMAIN_EU_AMSTERDAM_1_AD_1`, `AVAILABILITY_DOMAIN_AP_MELBOURNE_1_AD_1`, `AVAILABILITY_DOMAIN_CA_MONTREAL_1_AD_1`, `AVAILABILITY_DOMAIN_AP_HYDERABAD_1_AD_1`, `AVAILABILITY_DOMAIN_AP_CHUNCHEON_1_AD_1`, `AVAILABILITY_DOMAIN_NO_AD` were removed from the models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
* The parameter `region` was modified to accept any string in the models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
* The parameter `country` was removed from the model `CreateUserDetails` in the Customer Incident Management Service
* The parameter `source` was removed from the operation `get_status` in `IncidentClient` the Customer Incident Management Service
====================
2.111.0 - 2023-08-29