forked from aviadtamir/oci-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.rst
3967 lines (3257 loc) · 186 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.104.1 - 2023-06-06
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-madrid-2 region
* Support for bulk include/exclude of migration objects in the Database Migration service
* Support for Kafka cluster profiles, including dedicated Kafka broker nodes, in the Big Data service
* Support for MySQL HeatWave Lakehouse in the MySQL Database service
* Support for capacity reports in the Compute service
====================
2.104.0 - 2023-05-30
====================
Added
-----
* Support for policy-based snapshots in the File Storage service
* Support for creating and updating a VM cluster network with disaster recovery network support in the Database service
* Support for setting a management dashboard or saved search to be shared across OCI Observability & Management services in the Management Dashboard service
Breaking
--------
* The property `port` was deprecated and made optional in the `ScanDetails` model in the Database service
====================
2.103.0 - 2023-05-23
====================
Added
-----
* Support for CRI-O parsing in the Logging service
* Support for retrieving the resource availability domain when getting Exadata infrastructure or VM clusters in the Database service
* Support for specifying database servers when creating dedicated autonomous databases in the Database service
* Support for secondary egress zones in the DNS service
Breaking
--------
* The models `LogIncludedSearch`, `LogIncludedSearchSummary`, `LogIncludedSearchSummaryCollection`, `LogIncludedSearch`, `LogIncludedSearchSummary` and `LogIncludedSearchSummaryCollection` were removed in the Logging service
* The property `keys` was made required in the `UnifiedAgentCsvParser` and `UnifiedAgentTsvParser` models in the Logging service
* The property `patterns` was made required in the `UnifiedAgentGrokParser` and `UnifiedAgentMultilineGrokParser` models in the Logging service
* The properties `sources` and `destination` were made required in the `UnifiedAgentLoggingConfiguration` model in the Logging service
* The property `format` was made required in the `UnifiedAgentMultilineParser` model in the Logging service
* The property `expression` was made required in the `UnifiedAgentRegexParser` model in the Logging service
* The property `paths` was made required in the `UnifiedAgentTailLogSource` model in the Logging service
* The property `channels` was made required in the `UnifiedAgentWindowsEventSource` model in the Logging service
* The operations `get_log_included_search` and `list_log_included_searches` were removed from the `LoggingManagementClient` in the Logging service
* A new required property `external_downstreams` was added in the `zone` model in the DNS service
====================
2.102.0 - 2023-05-16
====================
Added
-----
* Support for self-service integration in the Fusion Apps as a Service service
Breaking
--------
* The models `AttachExistingInstanceDetails`, `CreateNewInstanceDetails`, `CreateOicServiceInstanceDetails`, `CreateServiceInstanceDetails`, `FawAdminInfoDetails` and `CreateOaxServiceInstanceDetails` were removed from the Fusion Apps as a Service service
* The property `action` was removed from the `ServiceAttachment` model in the Fusion Apps as a Service service
* The property `action` was removed from the `CreateServiceAttachmentDetails` model in the Fusion Apps as a Service service
====================
2.101.0 - 2023-05-09
====================
Added
-----
* Support for the Access Governance service
* Support for creating, updating, listing and downloading one-off patches in the Database service
* Support for changing disaster recovery configurations of remote autonomous databases in the Database service
* Support for scheduling automatic backups in the Database service
* Support for provisioning Software-Defined Data Centers (SDDCs) using standard bare metal shapes, with Block Storage as the datastore, in the VMWare Solution service
* Support for parity with the configuration options of the Compute service in the Compute Autoscaling service
Breaking
--------
* The Data Connectivity Management service was removed from the SDK
====================
2.100.0 - 2023-05-02
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-jovanovac-1 region
* Support for bring-your-own-license TLS and ORDS certificates in the Database service
* Support for tags in the Stack Monitoring service
* Support for GPU shapes for model deployments in the Data Science service
* Support for returning networking details of instances in the Visual Builder service
* Support for high-memory VMs in the Compute service
* Support for integrating with the Integration Cloud service in the Process Automation service
* Support for managing on-demand node upgrades in node pools in the Container Engine for Kubernetes service
Breaking
--------
* The model `UpdateVirtualNodeDetails` was removed from the Container Engine for Kubernetes service
* The property `type` in the `DiscoveryDetails` model in the Application Migration service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The property `protocol` in the `IdentityProvider` model in the Identity Data Plane service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The properties `lifecycle_state`, `kind`, and `last_execution_status` in the `Rule` model in the Log Analytics service were fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if these properties are assigned a value that they do not support.
* The properties `type` and `lifecycle_state` in the `Parameter` model in the Digital Assistant service were fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if these properties are assigned a value that they do not support.
* The property `model_type` in the `AbstractField`, `ConnectionDetails`, `Filter`, `Operation`, and `Source` models in the Data Integration service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The property `baseline_ocpu_utilization` in the `LaunchInstanceShapeConfigDetails` model in the Compute service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The property `type` in the `AssetSource`, `AssetSourceCredentials`, and `AssetSourceSummary` models in the Cloud Migration service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The property `lifecycle_state` in the `AssetSource`, `AssetSourceConnection`, `AssetSourceSummary`, `DiscoverySchedule`, and `DiscoveryScheduleSummary` models in the Cloud Migration service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
* The property `connection_type` in the `AssetSourceConnection` model in the Cloud Migration Service was fixed to no longer support `UNKNOWN_ENUM_VALUE`. Instead, a `ValueError` will be raised if this property is assigned a value that it does not support.
====================
2.99.1 - 2023-04-25
====================
Added
-----
* Support for enabling mTLS authentication with Listener and for providing custom value for TLS port and Non-TLS Port during AVM Cluster Creation in Database service
* Support for usedDataStorageSizeInGbs property for autonomous database in the Database service
* Support for csiNumber organization in Tenant Manager Control Plane service
* Support for creating and updating an infrastructure with LACP support in Database service
* Support for changePrivateEndpointOutboundConnection operation in Integration Cloud service
* Support for Enable Process in Integration Cloud service
* Support for Disaster Recovery, DR enablement, switchover, and failover feature in Fusion Apps service
* Support for discovery and monitoring of External Exadata infrastructure in Database Management Service
====================
2.99.0 - 2023-04-18
====================
Added
-----
* Support for private endpoints in the Digital Assistant service
* Support for canceling backups in the Database service
* Support for improved labeling of key/value pairs in the Data Labeling service
Breaking
--------
* Support for retries by default on operations of the Digital Assistant service
* The property `opc_retry_token` was removed from the models `configure_digital_assistant_parameters`, `rotate_channel_keys`, `start_channel`, `stop_channel` in the Digital Assistant service
- The property `lifetime_logical_clock` was removed from the models `Record`, `Dataset` and `Annotation` in the Digital Assistant service
- The property `digital_assistant_id` was renamed to `id` in the `list_digital_assistants` model in the Digital Assistant service
- The property `is_latest_skill_only` was renamed to `is_latest_version_only` in the `list_packages` method in the Digital Assistant service
- The property `skill_id` was renamed to `id` in the `list_skills` model in the Digital Assistant service
- The properties `authorization_endpoint_url` and `subject_claim` were made optional in the `AuthenticationProvider` model in the Digital Assistant service
====================
2.98.0 - 2023-04-11
====================
Added
-----
* Support for rotation of certificates on autonomous VM clusters on Exadata Cloud at Customer in the Database service
* Support for ACD and OKV wallet naming for autonomous databases and dedicated autonomous databases on Exadata Cloud at Customer in the Database service
* Support for Exadata cloud service application virtual IPs (VIPs) in the Database service
* Support for additional manageability features for large sensitive data models and masking policies in the Data Safe service
* Support for getting user profile details and assignments for databases and fleets in the Data Safe service
* Support for enabling ADDM spotlight for databases in the Operations Insights service
Breaking
--------
* The property `additional_database_status` was removed from the models `AutonomousDatabase`, `AutonomousDatabaseSummary`, `AutonomousDataWarehouse`and `AutonomousDataWarehouseSummary` in the Database service
====================
2.97.0 - 2023-04-04
====================
Added
-----
* Support for pre-emptible worker nodes in the Container Engine for Kubernetes service
* Support for larger data storage (now up to 128TB) in the MySQL Database service
* Support for HTTP health checks for HTTPS backend sets in the Load Balancer service
Breaking
--------
* The property `backend_set_name` was made required in the `ForwardToBackendSet` model in the Load Balancer service
2.96.1 - 2023-03-28
====================
Added
-----
* Support for ACD and OKV wallet naming for autonomous databases and dedicated autonomous databases on Exadata Cloud at Customer in the Database service
* Support for validating the credentials of a connection in the DevOps service
* Support for GoldenGate Replicat performance profiles when creating a migration in the Database Migration service
* Support for connection diagnostics on registered databases in the Database Migration service
* Support for launching bare metal instances in an RDMA network in the Compute service
====================
2.96.0 - 2023-03-21
====================
Added
-----
* Support for backup automation integration with the Database Recovery service in the Database service
* Support for changing the disaster recovery configuration of an autonomous database in remote regions of its disaster recovery association in the Database service
* Support for creating a remote disaster recovery association clone of an autonomous database in the Database service
* Support for managed build stages to be configured to use custom shape build runners in the DevOps service
* Support for listing pre-built functions and creating functions from pre-built functions in the Functions service
* Support for connections types for database resources of type Amazon S3, HDFS, SQL Server, Java Messaging service, Mongo DB, Oracle NoSQL, and Snowflake in the GoldenGate service
Breaking
--------
* The constant value `MODEL_TYPE_LAKE_HOUSE_CONNECTION` was renamed to `MODEL_TYPE_LAKE_CONNECTION` in the Connection, ConnectionDetails, ConnectionSummary, CreateConnectionDetails and UpdateConnectionDetails models in the Data Integration Service
* The constant value `MODEL_TYPE_LAKE_HOUSE_DATA_ASSET` was renamed to `MODEL_TYPE_LAKE_DATA_ASSET` in the enum ModelTypeEnum in the DataAsset, CreateDataAssetDetails, DataAssetSummary, and UpdateDataAssetDetails models in the Data Integration Service
* Model `UpdateConnectionFromLakehouse` was renamed to `UpdateConnectionFromLake` in the Data Integration Service
* The constant values for `lifecycle_state` property of model `FunctionSummary` are removed in the Functions Service
====================
2.95.0 - 2023-03-14
====================
Added
-----
* Support for the Identity Domains service
* Support for long-term backups for autonomous databases on Exadata Cloud at Customer in the Database service
* Support for database OS patching in the Database service
* Support for managing enhanced clusters, cluster add-ons, and serverless virtual node pools in the Container Engine for Kubernetes service
* Support for templates and copy object requests in the Data Integration service
* Support for maintenance features in the GoldenGate service
* Support for AMD_MILAN_BM_GPU configuration type on instances in the Compute service
* Support for host storage metrics and network metrics as part of host capacity planning in the Operations Insights service
Breaking
--------
* `UNKNOWN_ENUM_VALUE` will be returned for unknown enum values, instead of raising `ValueError`, for property `protocol` in model `IdentityProvider` in the Identity Data Plane service
* `UNKNOWN_ENUM_VALUE` will be returned for unknown enum values, instead of raising `ValueError`, for property `lifecycle_state` in model `TemplateSummary` in the Identity Data Plane service
Security
--------
* The upper bound for `cryptography` dependency has changed to versions less than `40.0.0` to address security vulnerability CVE-2023-23931. For more discussion please see https://github.com/oracle/oci-python-sdk/issues/515
====================
2.94.0 - 2023-03-07
====================
Added
-----
* Support for creating and updating autonomous database long-term backup schedules in the Database service
* Support for creating, updating, and deleting autonomous database long-term backups in the Database service
* Support for model deployment resources to use customized container images containing runtime dependencies of ML models and custom web servers to handle inference requests in the Data Science service
* Support for using the compartmentIdInSubtree parameter when summarizing management agent counts in the Management Agent Cloud service
* Support for getting agent property details in the Management Agent Cloud service
* Support for filtering by gateway ID when listing agents in the Management Agent Cloud service
* Support for the Hebrew and Greek languages during AI language text translation in the AI Language service
* Support for auto-detection when analyzing text with pre-trained models in the AI Language service
* Support for specifying update operation constraints when updating an instance in the Compute Service
* Support for disaster recovery in the Content Management service
* Support for advanced autonomous databases insights in the Operations Insights service
Breaking
--------
* Support for retries by default on operations of the Analytics Cloud service
* The value `ACTIVE` was removed from `LifecycleDetails` in the `OceInstanceSummary` and `OceInstance` model in the Content Management service
====================
2.93.1 - 2023-02-28
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-dcc-rating-1, eu-dcc-rating-2, eu-dcc-dublin-1, eu-dcc-dublin-2, and eu-dcc-milan-2 regions
* Support for on-demand bootstrap script execution in the Big Data Service
====================
2.93.0 - 2023-02-21
====================
Added
-----
* Support for async jobs in the AI Anomaly Detection service
* Support for specifying algorithm hints and windows sizes during model training in the AI Anomaly Detection service
* Support for specifying a sensitivity value during model detection in the AI Anomaly Detection service
* Support for discovery and monitoring of external Oracle database infrastructure components in the Database Management service
Breaking
--------
* The type for property `system_tags` was changed from a dict of string to another dict to a dict of a string to object for `project_summary`, `project`, `model_summary`, `model`, `data_asset_summary`, `data_asset`, `ai_private_endpoint_summary`, `ai_private_endpoint` models in the AI Anomaly Detection service
* Support for retries by default on operations of the AI Anomaly Detection service
====================
2.92.0 - 2023-02-14
====================
Added
-----
* Support for the Visual Builder Studio service
* Support for the Autonomous Recovery service
* Support for retries by default on operations of the Compute service
* Support for selecting specific database servers when creating autonomous VM clusters in the Database service
* Support for creating autonomous VMs during the creation of autonomous VM clusters in the Database service
Breaking
--------
* Support for retries by default on operations of the Compute service
====================
2.91.0 - 2023-02-07
====================
Added
-----
* Support for changing Data Guard role of a database instance within the Database service
* Support for listing autonomous container database versions in the Database service
* Support for specifying a database version when creating or updating an autonomous container database in the Database service
* Support for specifying an eCPU count when creating or updating autonomous shared databases in the Database service
* Support for Helm attestation and Helm arguments on deploy operations in the DevOps service
* Support for uploading master key wallets for deployments in the GoldenGate service
* Support for custom configurations in the Operations Insights service
Breaking
--------
* Field `cpu_core_count` has been made optional in the models `AutonomousDatabaseSummary` and `AutonomousDatabase` in the Database service
====================
2.90.4 - 2023-01-31
====================
Added
-----
* Support for ECPU billing for autonomous databases and dedicated autonomous databases on Exadata Cloud at Customer in the Database service
* Support for providing a vault secret ID when creating or updating autonomous shared databases in the Database service
* Support for including ORDS and database transform URLs as autonomous database connections in the Database service
* Support for role-based access control on OpenSearch clusters in the Search service
* Support for managed shell stages on deployments in the DevOps service
* Support for memory encryption on confidential VMs in the Compute service
* Support for configuration items, and reporting ownership of configuration items, in the Application Performance Monitoring service
====================
2.90.3 - 2023-01-24
====================
Added
-----
* Support for the Cloud Migrations service
* Support for setting up custom private IPs while creating private endpoints in the Database service
* Support for machine learning pipelines in the Data Science service
* Support for personally identifiable information detection in the AI Language service
====================
2.90.2 - 2023-01-17
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the us-chicago-1 region
* Support for cross-region replication in the File Storage service
* Support for setting up private DNS on ExaCS systems during provisioning in the Database service
* Support for elastic storage expansion on infrastructure resources for Exadata Cloud at Customer in the Database service
* Support for target versions during infrastructure patching on Cloud Exadata infrastructure in the Database service
* Support for creating model version sets in the model catalog in the Data Science service
* Support for associating a model with a model version set in the Data Science service
* Support for custom key/value annotations on documents in the Data Labeling service
* Support for configurable timeouts in the Service Mesh service
====================
2.90.1 - 2023-01-10
====================
Security
--------
* Upgrade wheel version for applicable Python versions to fix security vulnerability as mentioned in https://github.com/oracle/oci-python-sdk/pull/502
====================
2.90.0 - 2022-12-13
====================
Added
-----
* Support for the Queue service
* Support for Intel X9 shapes when launching VM database systems in the Database service
* Support for enabling, disabling, and editing Database Management service connections on pluggable databases in the Database service
* Support for availability configurations and maintenance window schedules on synthetic monitors in the Application Performance Monitoring service
* Support for scheduling cascading deletes on a project in the DevOps service
* Support for cancelling a scheduled cascading delete on a project in the DevOps service
* Support for issue and action fields on job phases of validation and migration processes in the Database Migration service
* Support for cluster profiles in the Big Data service
* Support for egress-only services in the Service Mesh service
* Support for optional listeners and service discovery metadata on virtual deployments in the Service Mesh service
* Support for canceling work requests in the accepted state in the Service Mesh service
* Support for filtering work requests on associated resource id and operation status in the Service Mesh service
* Support for sorting while listing work requests, listing work request logs, and listing work request errors in the Service Mesh service
* Support for Oracle Managed Access integration in the Fusion Apps as a Service service
* Support for refresh scheduling in the Fusion Apps as a Service service
* Support for additional connections types on database resources in the GoldenGate service
* Support for retries by default on operations of the Fusion Apps as a Service service
* Support for retries by default on operations of the Database Migration service
* Support for retries by default on operations of the Service Mesh service
Breaking
--------
* Support for default retries on operations of the Service Mesh service
* Support for default retries on operations of the Database Migration service
* Support for default retries on operations of the Fusion Apps as a Service service
* The property `service_instance_type` changed from optional to required in the model `AttachExistingInstanceDetails` in Fusion Apps as a Service service
* The property `instance_id` changed from optional to required in the model `AttachExistingInstanceDetails` in Fusion Apps as a Service service
* The property `details` changed from optional to required in the model `CreateNewInstanceDetails` in Fusion Apps as a Service service
* The property `name` changed from optional to required in the model `CreateOaxServiceInstanceDetails` in Fusion Apps as a Service service
* The property `adw_admin_pass` changed from optional to required in the model `FawAdminInfoDetails` in Fusion Apps as a Service service
* The property `notification_email` changed from optional to required in the model `FawAdminInfoDetails` in Fusion Apps as a Service service
* The type of property `rules` changed from a list of `AccessPolicyRule` to list of `AccessPolicyRuleDetails` for model `CreateAccessPolicyDetails` in the Service Mesh service
* The type of property `rules` changed from a list of `AccessPolicyRule` to list of `AccessPolicyRuleDetails` for model `UpdateAccessPolicyDetails` in the Service Mesh service
* The type of property `mtls` changed from `CreateIngressGatewayMutualTransportLayerSecurityDetails` to `IngressGatewayMutualTransportLayerSecurityDetails` for model `CreateIngressGatewayDetails` in the Service Mesh service
* The type of property `mtls` changed from `CreateIngressGatewayMutualTransportLayerSecurityDetails` to `IngressGatewayMutualTransportLayerSecurityDetails` for model `UpdateIngressGatewayDetails` in the Service Mesh service
* The type of property `mtls` changed from `CreateMutualTransportLayerSecurityDetails` to `VirtualServiceMutualTransportLayerSecurityDetails` for model `CreateVirtualServiceDetails` in the Service Mesh service
* The type of property `mtls` changed from `CreateMutualTransportLayerSecurityDetails` to `VirtualServiceMutualTransportLayerSecurityDetails` for model `UpdateVirtualServiceDetails` in the Service Mesh service
* The type of property `route_rules` changed from list of `IngressGatewayTrafficRouteRule` to list of `IngressGatewayTrafficRouteRuleDetails` for model `CreateIngressGatewayRouteTableDetails` in the Service Mesh service
* The type of property `route_rules` changed from list of `IngressGatewayTrafficRouteRule` to list of `IngressGatewayTrafficRouteRuleDetails` for model `UpdateIngressGatewayRouteTableDetails` in the Service Mesh service
* The type of property `route_rules` changed from list of `VirtualServiceTrafficRouteRule` to list of `VirtualServiceTrafficRouteRuleDetails` for model `CreateVirtualServiceRouteTableDetails` in the Service Mesh service
* The type of property `route_rules` changed from list of `VirtualServiceTrafficRouteRule` to list of `VirtualServiceTrafficRouteRuleDetails` for model `UpdateVirtualServiceRouteTableDetails` in the Service Mesh service
====================
2.89.0 - 2022-12-06
====================
Added
-----
* Support for the Container Instances service
* Support for the Document Understanding service
* Support for creating stacks from OCI DevOps service and Bitbucket Cloud/Server as source control management in the Resource Manager service
* Support for deployment stage level parameters in the DevOps service
* Support for PeopleSoft discovery in the Stack Monitoring service
* Support for Apache Tomcat discovery in the Stack Monitoring service
* Support for SQL Server discovery in the Stack Monitoring service
* Support for OpenId Connect in the API Gateway service
* Support for returning compartment ids when listing backups in the MySQL Database service
* Support for adding a load balancer endpoint to a DB system in the MySQL Database service
* Support for managed read replicas in the MySQL Database service
* Support for setting replication filters on channels in the MySQL Database service
* Support for replicating from a source configured without global transaction identifiers into a channel in the MySQL Database service
* Support for time zone and language preferences in the Announcements service
* Support for adding report schedules for activity auditing and alerts reports in the Data Safe service
* Support for bulk operations on alerts in the Data Safe service
* Support for Java server usage reporting in the Java Management service
* Support for Java library usage reporting in the Java Management service
* Support for cryptographic roadmap impact analysis in the Java Management service
* Support for Java Flight Recorder recordings in the Java Management service
* Support for post-installation steps in the Java Management service
* Support for restricting management of advanced functionality in the Java Management service
* Support for plugin improvements in the Java Management service
* Support for collecting diagnostics on deployments in the GoldenGate service
* Support for onboarding Exadata Public Cloud (ExaCS) targets to the Operations Insights service
Breaking
--------
* Parameter `autonomous_database_id` of model `AutonomousDatabaseDetails` changed from optional to required in the Data Safe service
* Parameter `listener_port` of model `InstalledDatabaseDetails` changed from optional to required in the Data Safe service
* Parameter `service_name` of model `InstalledDatabaseDetails` changed from optional to required in the Data Safe service
* Parameter `compartment_id` of model `PatchAlertsDetails` changed from optional to required in the Data Safe service
====================
2.88.2 - 2022-11-22
====================
Added
-----
* Support for Resource Principals version 2.1 and 2.1.1
* Support for disabling Lazy Imports introduced in version `2.88.1` by setting the environment variable `OCI_PYTHON_SDK_LAZY_IMPORTS_DISABLED` to `True`
Changed
-------
* The upper bound for `cryptography` dependency has changed from `37.0.2` to versions less than `39.0.0`
====================
2.88.1 - 2022-11-15
====================
Added
-----
* Support for mTLS authentication with listeners during Autonomous VM Cluster creation on Exadata Cloud at Customer in the Database service
* Support for providing custom values for TLS and non-TLS ports during Autonomous VM Cluster creation on Exadata Cloud at Customer in the Database service
* Support for creating multiple Autonomous VM Clusters in the same Exadata infrastructure in the Database service
* Support for listing resources associated with a job in the Resource Manager service
* Support for listing resources associated with a stack in the Resource Manager service
* Support for listing outputs associated with a job in the Resource Manager service
* Support for the Oracle distribution of Apache Hadoop 2.0 in the Big Data service
Changed
-------
* Lazy Imports (based on `PEP 562 <https://peps.python.org/pep-0562/>`_) have been enabled by default for OCI modules when using a Python version 3.7 or up to reduce start up times.
====================
2.88.0 - 2022-11-08
====================
Added
-----
* Support for listing local and cross-region refreshable clones in the Database service
* Support for adding multiple cloud VM clusters in the Database service
* Support for creating rollback jobs in the Resource Manager service
* Support for edge nodes in the Big Data service
* Support for Single Client Access Name (SCAN) in the Data Flow service
* Support for additional filters when listing application dependencies in the Application Dependency Management service
* Support for additional properties when reading Vulnerability Audit resources in the Application Dependency Management service
* Support for optionally passing compartment IDs when creating Vulnerability Audit resources in the Application Dependency Management service
Breaking
--------
* Property `certificate_id` changed from optional to required for model `PrivateServerConfigDetails` in the Resource Manager service
====================
2.87.0 - 2022-11-01
====================
Added
-----
* Support for cloning from a backup from the last available timestamp in the Database service
* Support for third-party scanning using Qualys in the Vulnerability Scanning service
* Support for customer-provided encryption keys in the Logging Analytics service
* Support for connections for database resources in the GoldenGate service
Breaking
--------
* The properties `dataType`, `timeDataEnded`, `compartmentId` is made from required to optional from the `StorageWorkRequestSummary` model in Log Analytics service
====================
2.86.0 - 2022-10-25
====================
Added
-----
* Support for the Disaster Recovery service
* Support for running code interactively with session applications using statements in the Data Flow service
* Support for language custom models and language translation in the AI Language service
Breaking
--------
* type `documents` is changed from `TextClassificationDocument` to `TextDocument` in `BatchDetectLanguageTextClassificationDetails` model in the AI Language service
* type `documents` is changed from `SentimentsDocument` to `TextDocument` in `BatchDetectLanguageSentimentsDetails` model in the AI Language service
* type `documents` is changed from `KeyPhraseDocument` to `TextDocument` in `BatchDetectLanguageKeyPhrasesDetails` model in the AI Language service
* type `documents` is changed from `EntityDocument` to `TextDocument` in `BatchDetectLanguageEntitiesDetails` model in the AI Language service
====================
2.85.0 - 2022-10-04
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-dcc-milan-1 region
* Support for target host identification and SOCKS support on dynamic port forwarding sessions in the Bastion service
* Support for viewing top processes running at a particular point of time in the Operations Insights service
* Support for filtering top processes by a single process to view that process's trend over time in the Operations Insights service
* Support for creating Enterprise Manager-based Windows host targets in the Operations Insights service
* Support for creating Management Agent Cloud-based Windows and Solaris host targets in the Operations Insights service
Breaking
--------
* Parameter `target_resource_port` is removed from models `TargetResourceDetails` and `CreateSessionTargetResourceDetails`
====================
2.84.0 - 2022-09-27
====================
Added
-----
* Support for search capabilities for monitored resources in the Stack Monitoring service
* Support for deleting monitored resources with their members in the Stack Monitoring service
* Support for creating host-type monitored resources in the Stack Monitoring service
* Support for associating external resources during creation of monitored resources in the Stack Monitoring service
* Support for uploading bulk data in the NoSQL Database Cloud service
* Support for examining query execution plans in the NoSQL Database Cloud service
* Support for starting and stopping clusters in the Big Data service
* Support for additional compute shapes in the Big Data service
* Support for backwards pagination in the Search service
* Support for elastic compute for Exadata Cloud at Customer in the Database service
Breaking
--------
* Support for default retries on operations of the NoSQL Database Cloud service
====================
2.83.0 - 2022-09-20
====================
Added
-----
* Support for the Cloud Bridge service
* Support for the Cloud Migrations service
* Support for display banners, trails, and sizes in the GoldenGate service
* Support for generic REST data assets, flattening of data in Data Flow, and runtime information on pipelines in the Data Integration service
* Support for expanded search functionality in the Threat Intelligence service
* Support for ingest-time rules and specifying logsets and query strings during recalls in the Logging Analytics service
* Support for repository mirroring from Visual Builder Studio in the DevOps service
* Support for running a managed build stage with the source code hosted in a Visual Builder Studio repository in the DevOps service
* Support for triggering a build run based on an event in a Visual Builder Studio repository in the DevOps service
* Support for additional parameters during cost management scheduling in the Usage service
Breaking
--------
* Support for retries by default on operations of the GoldenGate service
* Support for retries by default on operations of the Threat Intelligence service
* The property `threat_types` is change from an Array of `model.ThreatType` to an Array of `string` in the IndicatorSummary model in the Threat Intelligence service
* The property `deploy_stage_id` was made a required parameter in `CreateSingleDeployStageDeploymentDetails` and `CreateSingleDeployStageRedeploymentDetails` model in the DevOps service
* The property `PreviousDeploymentId` was made a required parameter in the `CreateDeployPipelineRedeploymentDetails` model in the DevOps service
====================
2.82.0 - 2022-09-13
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-madrid-1 region
* Support for exporting and importing larger model artifacts in the model catalog in the Data Science service
* Support for Request Based Authorization in the API Gateway service
* Support for Dynamic Authentication in the API Gateway service
* Support for Dynamic Routing Backend in the API Gateway service
Breaking
--------
* Support for retries by default on some operations of the Data Science service
====================
2.81.0 - 2022-09-06
====================
Added
-----
* Support for generic REST, OCI Streaming service, and Lake House connectors in the Data Connectivity Management service
* Support for connecting to the Data Catalog service in the Data Connectivity Management service
* Support for Kerberos and SSL for HDFS operations in the Data Connectivity Management service
* Support for excel-formatted data and default columns in the Data Connectivity Management service
* Support for reporting connector usage in the Data Connectivity Management service
* Support for preferred credentials for performing privileged operations in the Database Management service
* Support for passing a content encoding when posting metrics in the Monitoring service
Breaking
--------
* Support for retries by default on some operations of the Data Connectivity Management service
* Model `ConnectionValidationSummaryCollection` removed from the Data Connectivity Management service
* Operations `delete_connection_validation` and `list_connection_validations` removed from the `DataConnectivityManagementClient` of the Data Connectivity Management service
* Parameter `resource_id` renamed to `registry_id` in `list_work_requests` operation from the `DataConnectivityManagementClient` of the Data Connectivity Management service
====================
2.80.1 - 2022-08-30
====================
Added
-----
* Support for opting out of guest VM event collection, health metrics, diagnostics logs, and traces in the Database service
* Support for in-place upgrades for software-defined data centers in the VMWare Solution service
* Support for single-client access name protocol as a data source for private access channels in the Analytics Cloud service
* Support for network security groups, egress control on public datasources, and GitHub access in the Analytics Cloud service
* Support for performance-based autotuning of block and boot volumes in the Block Storage service
====================
2.80.0 - 2022-08-23
====================
Added
-----
* Support for the Enterprise Manager Warehouse service
* Support for additional configuration variables in the MySQL Database service
* Support for file filters in the DevOps service
* Support for support rewards redemption summaries in the Usage service
* Support for the parent tenancy of an organization to view child tenancy categories, recommendations, and resource actions in the Optimizer service
* Support for choosing prior versions during infrastructure maintenance on Exadata Cloud at Customer in the Database service
Breaking
--------
* `EmDataLakeClient` was renamed to `EmWarehouseClient` in the Enterprise Manager Warehouse service
* `EmDataLakeClientCompositeOperations` was renamed to `EmWarehouseClientCompositeOperations` in the Enterprise Manager Warehouse service
=====================
2.79.0 - 2022-08-16
====================
Added
-----
* Support for Logging Analytics as a streaming source target in the Service Connector Hub service
* Support for data sources for logging query registration in the Cloud Guard service
* Support for custom detector rules on insight detector recipes in the Cloud Guard service
* Support for fetching data source events and problem entities in the Cloud Guard service
* Support for E3, E4, Standard3, and Optimized3 flexible compute shapes on notebooks, model deployment, and jobs in the Data Science service
* Support for streaming application logs to the Logging service in the Data Flow service
Breaking
--------
* Support for retries by default on operations of the Dataflow service
====================
2.78.0 - 2022-08-09
====================
Added
-----
* Support for single-host software-defined data centers in the VMWare Solution service
* Support for Java download and installation in the Java Management service
* Support for lifecycle management for Windows in the Java Management service
* Support for installation scripts in the Java Management service
* Support for unlimited-installation keys in the Java Management service
* Support for configuring automatic usage tracking in the Java Management service
* Support for STANDARDX and ENTERPRISEX instance types in Integration service
* Support for additional languages and multimedia formats in transcription jobs in the AI Speech service
* Support for maintenance run history for Exadata Cloud at Customer in the Database service
* Support for Optimizer statistics monitoring and management on various database administration operations in the Database Management service
* Support for OCI Compute instances in the Operations Insights service
* Support for moving resources in the Console Dashboard service
* Support for round-robin alerting in the Application Performance Monitoring service
* Support for aggregated network data of synthetic monitors in the Application Performance Monitoring service
* Support for etags on operations in the Load Balancing service
Breaking
--------
* The property `inventory_log` in create_fleet_details model was made a required parameter in Operations Insights service
====================
2.77.0 - 2022-08-02
====================
Added
-----
* Support for OpenSearch in the Search service
* Support for child tables in the NoSQL Database Cloud service
* Support for private repositories in the DevOps service
Breaking
--------
* Support for retries by default on operations of the Quotas service
====================
2.76.0 - 2022-07-27
====================
Added
-----
* Support for the Fusion Apps as a Service service
* Support for the Digital Media service
* Support for accessing all Terraform providers from Hashicorp Registry, as well as bringing your own providers, in the Resource Manager service
* Support for runtime configurations in notebook sessions in the Data Science service
* Support for compartmentIdInSubtree and accessLevel filters when listing management agents in the Management Agent Cloud service
* Support for filtering by type when listing work requests in the Management Agent Cloud service
* Support for filtering by agent id when listing management agent plugins in the Management Agent Cloud service
* Support for specifying size preference when requesting a data transfer appliance in the Data Transfer service
* Support for encryption of boot and block volumes associated with a cluster using customer-specified KMS keys in the Big Data service
* Support for the VM.Standard.E4.Flex shape for Cloud SQL (CSQL) nodes in the Big Data service
* Support for listing block and boot volumes, as well as block and boot volume replicas, within a volume group in the Block Volume service
* Support for dedicated autonomous databases in the Operator Access Control service
* Support for viewing automatic workload repository (AWR) data for databases added to AWRHub in the Operations Insights service
* Support for ports, protocols, roles, and SSL secrets when enabling or modifying database management in the Database service
* Support for monthly security maintenance runs in the Database service
* Support for monthly infrastructure patching for Exadata Cloud at Customer resources in the Database service
Breaking
--------
* `DataMaskingActivityClient`,`FusionEnvironmentClient`, `FusionEnvironmentFamilyClient`, `RefreshActivityClient`,`ScheduledActivityClient`, and `ServiceAttachmentClient` clients were merged into a single client `FusionApplicationsClient` for the Fusion Apps as a Service service
* Properties `addressee`, `address1`, `cityOrLocality`, `stateOrRegion`, `zipcode`, `country` are changed from optional to required for `ShippingAddress` model in Data Transfer Service
* Parameter `compartment_id` changed from required to optional in the `list_volumes` operation in `BlockstorageClient` in the Block Storage service
* Parameters `availability_domain` and `compartment_id` changed from required to optional in operations `list_boot_volumes`, `list_boot_volume_replicas`, `list_block_volume_replicas` in `BlockstorageClient` in the Block Storage service
====================
2.75.1 - 2022-07-19
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the mx-queretaro-1 region
* Support for the Process Automation service
* Support for the Managed Access service
* Support for extending maintenance reboot due dates on virtual machines in the Compute service
* Support for ingress routing tables on NAT gateways and internet gateways in the Networking service
* Support for container database and pluggable database discovery in the Stack Monitoring service
* Support for displaying rack serial numbers for Exadata infrastructure resources in the Database service
* Support for grace periods for wallet rotation on autonomous databases in the Database service
* Support for hosting models on flexible compute shapes with customizable OCPUs and memory in the Data Science service
Changed
-------
* The upper bound for `pyOpenSSL` dependency has changed from `19.1.0` to `22.0.0`
* The upper bound for `cryptography` dependency has changed from `3.4.7` to `37.0.2`
====================
2.75.0 - 2022-07-12
====================
Added
-----
* Support for DBCS databases in the Operations Insights service
* Support for point-in-time recovery for non-highly-available database systems in the MySQL Database service
* Support for triggering reboot migration on instances with pending maintenance in the Compute service
* Support for native pod networking in the Container Engine for Kubernetes service
* Support for creating Data Guard associations with new database systems in the Database service
Breaking
--------
* Parameter `host_type` in operation `list_host_insights` in the Operations Insights service has strict value checking for allowed values. `ValueError` is raised if an invalid value is provided.
* Parameter `preserve_data_volumes` is removed from operation `terminate_instance` in the Compute service.
=====================
2.74.0 - 2022-07-05
====================
Added
-----
* Support for backup policies returned as part of the database system list operation in the MySQL Database service
Breaking
--------
* Support for retries by default on some operations of the Bastion service
====================
2.73.0 - 2022-06-27
====================
Added
-----
* Support for the Network Monitoring service
* Support for specifying application scan settings when creating or updating host scan recipes in the Vulnerability Scanning service
* Support for moving data into an autonomous data warehouse in the Operations Insights service
* Support for shared infrastructure autonomous database character sets in the Database service
* Support for data collection logging events on Exadata instances in the Database service
* Support for specifying boot volume VPUs when launching instances from images in the Compute service
* Support for safe-deleting nodes in the Container Engine for Kubernetes service
Breaking
--------
* Support for retries by default on operations of the Logging Analytics service
====================
2.72.0 - 2022-06-21
====================
Added
-----
* Support for the Network Firewall service
* Support for smaller and larger HeatWave cluster nodes in the MySQL Database service
* Support for CSV file type datasets for text labeling and JSONL in the Data Labeling service
* Support for diagnostics in the Database Management service
Breaking
--------
* Support for retries by default on operations of the Network Firewall service
* Support for retries by default on the createAnnotation operation of the Data Labeling service
====================
2.71.0 - 2022-06-14
====================
Added
-----
* Support for the Web Application Acceleration (WAA) service
* Support for the Governance Rules service
* Support for the OneSubscription service
* Support for resource locking in the Identity service
* Support for quota resource locking in the Limits service
* Support for returning the backup with the requested changes in the MySQL Database service
* Support for time zone in Cloud Autonomous VM (CAVM) clusters in the Database service
* Support for configuration options in the Application Performance Monitoring service
* Support for MySQL connections in the Database Tools service
Breaking
--------
* The models `DatabaseToolsAllowedNetworkSources`, `DatabaseToolsVirtualSource`, and `ServiceCapability` are removed from the Database Tools service
* The property `SecretId` is made a required property in the `DatabaseToolsUserPasswordSecretIdDetails` model in the Database Tools service
* Response type for operation `update_backup` is changed to `oci.mysql.models.Backup` from `None` in the `DbBackupsClient` of the MySQL service
====================
2.70.1 - 2022-06-07
====================
Added
-----
* Support for calling Oracle Cloud Infrastructure services in the eu-paris-1 region
* Support for private endpoints in Resource Manager service
* Support downloading generated Terraform plan output in JSON or binary format in Resource Manager service
* Support for querying OPSI Data Objects in the Operations Insights service
Changed
-------
* Network security groups (NSGs) are now optional for autonomous databases on private endpoints in the Database service
====================
2.70.0 - 2022-05-31
====================
Added
-----
* Support for in-depth monitoring, diagnostics capabilities, and advanced management functionality for on-premise Oracle databases in the Database Management service
* Support for using Oracle Cloud Agent to perform iSCSI login and logout for non-multipath-enabled iSCSI attachments in the Container Engine for Kubernetes service
* Support for Fault Domain placement in the Container Engine for Kubernetes service
* Support for worker node images in the Container Engine for Kubernetes service
* Support for flexible shapes using the driverShapeConfig and executorShapeConfig properties in the Data Flow service
Breaking
--------
* Support for retries by default on operations in the Application Dependency Management service
====================
2.69.0 - 2022-05-24
====================
Added
-----
* Support for the License Manager service
* Support for usage plans in the API Gateway service
* Support for packaged skill and instance metadata management, role-based access options on instance creation, and assigned ownership in the Digital Assistant service
* Support for compute capacity reservations in the VMWare Solution service
* Support for Oracle Linux 8 application streams in the OS Management service
Breaking
--------
* Support for retries by default on operations in the API Gateway service
* The property `specification` is now a required parameter for the deployment model in the API Gateway service
* The property `specification` is now a required parameter for the create_deployment_details model in the API Gateway service
Changed
-------
* The vendored dependency `requests` was updgraded from version `2.21.0` to `2.27.1`
* The vendored dependency `urllib3` was updgraded from version `1.24.1` to `1.26.9`
* The vendored dependency `chardet` was updgraded from version `3.0.4` to `4.0.0`
* The vendored dependency `idna` was updgraded from version `2.8` to `2.10`
* The vendored dependency `six` was updgraded from version `1.12.0` to `1.16.0`
====================
2.68.0 - 2022-05-17
====================
Added
-----
* Support for information requests in the Operator Access Control service
* Support for Helm charts and repositories on deployments in the DevOps service
* Support for Application Dependency Management service scan results on builds in the DevOps service
* Support for build resources to use Bitbucket Cloud repositories for source code in the DevOps service
* Support for character set selection on autonomous dedicated databases in the Database service
* Support for listing autonomous dedicated database supported character sets in the Database service
* Support for AMD E4 flex shapes on virtual machine database systems in the Database service
* Support for terraform and improvements for cross-region ADGs in the Database service
Breaking
--------
* Support for retries by default on GET and LIST operations in the Visual Builder service
====================
2.67.0 - 2022-05-10
====================
Added
-----
* Support for getting usage information for autonomous databases and Cloud at Customer autonomous databases in the Database service
* Support for the "standby" lifecycle state on autonomous databases in the Database service
* Support for BIP connections and dataflow operators in the Data Integration service
Breaking
--------
* The type of parameter `default_connection` was changed from `CreateConnectionFromBICC` to `CreateConnectionDetails` in the create_data_asset_from_fusion_app model in the Data Integration service
* The type of parameter `default_connection` was changed from `ConnectionFromBICCDetails` to `ConnectionDetails` in the data_asset_from_fusion_app model in the Data Integration service
* The type of parameter `default_connection` was changed from `ConnectionSummaryFromBICC` to `ConnectionSummary` in the data_asset_summary_from_fusion_app model in the Data Integration service
* The type of parameter `output_ports` was changed from a list of oci.data_integration.models.OutputPort to oci.data_integration.models.TypedObject in the aggregator model in the Data Integration service
* Support for retries by default on WAF Edge Policy GET / LIST operations in the Web Application Acceleration and Security service
* Support for retries by default on some operations in the Stack Monitoring service
* Support for retries by default on some resource discovery and monitoring operations in the Application Management service
* Support for retries by default on some operations in the MySQL Database service
====================
2.66.0 - 2022-05-03
====================
Added
-----
* Support for the Application Dependency Management service
* Support for platform configuration options on some bare metal shapes in the Compute service
* Support for shielded instances for BM.Standard.E4.128 and BM.Standard3.64 shapes in the Compute service
* Support for E4 dense VMs on launch and update instance operations in the Compute service
* Support for reboot migration on DenseIO shapes in the Compute service
* Support for an increased database name maximum length, from 14 to 30 characters, in the Database service
* Support for provisioned concurrency in the Functions service
Breaking
--------
* Support for retries by default on operations in the Vault service
* Support for retries by default on operations in the DNS service
* Support for retries by default on operations in the Content Management service
* Support for retries by default on operations in the Console Dashboard service
* Support for retries by default on Web Application Firewall operations in the Web Application Acceleration and Security service
* Support for retries by default on operations in the Data Science service
====================
2.65.0 - 2022-04-26
====================
Added
-----
* Support for the Service Mesh service
* Support for security zones in the Cloud Guard service
* Support for virtual test access points (VTAPs) in the Networking service
* Support for monitoring as a source in the Service Connector Hub service
* Support for creating budgets that target subscriptions and child tenancies in the Budgets service
* Support for listing shapes and specifying a shape during creation of a node in the Roving Edge Infrastructure service
* Support for bringing your own key in the Roving Edge Infrastructure service
* Support for enabling inspection of HTTP request bodies in the Web Application Acceleration and Security
* Support for cost management schedules in the Usage service
* Support for TCPS on external containers as well as non-container and pluggable databases in the Database service
* Support for autoscaling on Open Data Hub (ODH) clusters in the Big Data service
* Support for creating Open Data Hub (ODH) 0.9 clusters in the Big Data service
* Support for Open Data Hub (ODH) patch management in the Big Data service
* Support for customizable Kerberos realm names in the Big Data service
* Support for dedicated vantage points in the Application Performance Monitoring service
* Support for reactivating child tenancies in the Organizations service
* Support for punctuation and the SRT transcription format in the AI Speech service