forked from oracle/oci-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.rst
3674 lines (3011 loc) · 168 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.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
Breaking
--------
* Support for default retries on some operations in the Networking service
* Support for default retries on all operations in the Data Safe service
* Support for default retries on some additional operations in the Application Performance Monitoring service
* Property `risk_score` is removed from model `Sighting` in the Cloud Guard service
* `subscription_id` is a required parameter for operation `list_subscription_mappings` in the subscription client in Tenant Manager control plane service
====================
2.64.0 - 2022-04-19
====================
Added
-----
* Support for the Stack Monitoring service
* Support for stack monitoring on external databases in the Database service
* Support for upgrading VM database systems in place in the Database service
* Support for viewing supported VMWare software versions when listing host shapes in the VMWare Solution service
* Support for choosing compute shapes when creating SDDCs and ESXi hosts in the VMWare Solution service
* Support for work requests on delete operations in the Vulnerability Scanning service
* Support for additional scan metadata in reports, including CVE descriptions, in the Vulnerability Scanning service
* Support for redemption codes in the Usage service
Breaking
--------
* Param `type` in model `DiscoveryDetails` assumes the value of `UNKNOWN_ENUM_VALUE` if it is assigned a value that is not of the allowed_values. It will not raise a `ValueError`.
====================
2.63.0 - 2022-04-12
====================
Added
-----
* Support for bringing your own IPv6 addresses in the Networking service
* Support for specifying database edition and maximum CPU core count when creating or updating an autonomous database in the Database service
* Support for enabling and disabling data collection options when creating or updating Exadata Cloud at Customer VM clusters in the Database service
Breaking
--------
* Support for retries by default on operations in the Identity service
* Support for retries by default on operations in the Operations Insights service
====================
2.62.1 - 2022-04-05
====================
Added
-----
* Fixed the lifecycle state values for target databases in the Data Safe service
* Support for content length and content type response headers when downloading PDFs in the Account Management service
* Support for creating Enterprise Manager-based zLinux host targets, creating alarms, and viewing top process analytics in the Operations Insights service
* Support for diagnostic reboots on VM instances in the Compute service
====================
2.62.0 - 2022-03-29
====================
Added
-----
* Support for returning the number of network ports as part of listing shapes in the Compute service
* Support for Java runtime removal and custom logs in the Java Management service
* Support for new parameters for BGP admin state and enabling/disabling BFD in the Networking service
* Support for private OKE clusters and blue-green deployments in the DevOps service
* Support for international customers to consume and launch third-party paid listings in the Marketplace service
* Support for additional fields on entities, attributes, and folders in the Data Catalog service
Breaking
--------
* Support for retries by default on operations in the Marketplace service
====================
2.61.0 - 2022-03-22
====================
Added
-----
* Support for getting the storage utilization of a deployment on deployment list and get operations in the GoldenGate service
* Support for virtual machines, bare metal machines, and Exadata databases with private endpoints in the Operations Insights service
* Support for setting deletion policies on database systems in the MySQL Database service
Breaking
--------
* Support for retries by default on operations in the Data Labeling service (data plane and control plane)
====================
2.60.1 - 2022-03-15
====================
Added
-----
* Support for Ubuntu platforms and unlimited installation keys in the Management Agent Cloud service
* Support for shielded instances in the VMWare Solution service
* Support for application resources in the Data Integration service
* Support for multi-AVM on Exadata Cloud at Customer infrastructure in the Database service
* Support for heterogeneous (VM and AVM) clusters on Exadata Cloud at Customer infrastructure in the Database service
* Support for custom maintenance schedules for AVM clusters on Exadata Cloud at Customer infrastructure in the Database service
* Support for listing vulnerabilities, vulnerability-impacted containers, and vulnerability-impacted hosts in the Vulnerability Scanning service
* Support for specifying an image count when creating or updating container scan recipes in the Vulnerability Scanning service
====================
2.60.0 - 2022-03-08
====================
Added
-----
* Support for the Sales Accelerator license option in the Content Management service
* Support for VCN hostname cluster endpoints in the Container Engine for Kubernetes service
* Support for optionally specifying an admin username and password when creating a database system during a restore operation in the MySQL Database service
* Support for automatic tablespace creation on non-autonomous and autonomous database dedicated targets in the Database Migration service
* Support for reporting excluded objects based on static exclusion rules and dynamic exclusion settings in the Database Migration service
* Support for removing, listing, and adding database objects reported by the Cloud Premigration Advisor Tool (CPAT) in the Database Migration service
* Support for migrating Oracle databases from the AWS RDS service to OCI as autonomous databases, using the AWS S3 service and DBLINK for data transfer, in the Database Migration service
* Support for querying additional fields of a resource using return clauses in the Search service
* Support for clusters and station clusters in the Roving Edge Infrastructure service
* Support for creating database systems and database homes using customer-managed keys in the Database service
Breaking
--------
* Support for retries enabled by default on operations in the Container Engine for Kubernetes service
* Support for retries enabled by default on operations in the Resource Manager service
* Support for retries enabled by default on operations in the Search service
====================
2.59.0 - 2022-03-01
====================
Added
-----
* Support for DRG route distribution statements to be specified with a new match type 'MATCH_ALL' for matching criteria in the Networking service
* Support for VCN route types on DRG attachments for deciding whether to import VCN CIDRs or subnet CIDRs into route rules in the Networking service
* Support for CPS offline reports in the Database service
* Support for infrastructure patching v2 features in the Database service
* Support for auto-scaling the storage of an autonomous database, as well as shrinking an autonomous database, in the Database service
* Support for managed egress via a default networking option on jobs and notebooks in the Data Science service
* Support for more types of saved search enums in the Management Dashboard service
Breaking
--------
* Support for retries enabled by default on some operations in the AI Vision service
====================
2.58.0 - 2022-02-22
====================
Added
-----
* Support for the Data Connectivity Management service
* Support for the AI Speech service
* Support for disabling crash recovery in the MySQL Database service
* Support for detector recipes of type "threat", new detector rule of type "rogue user", and sightings operations in the Cloud Guard service
* Support for more VM shape configurations when listing shapes in the Compute service
* Support for customer-managed encryption keys in the Analytics Cloud service
* Support for FastConnect device information in the Networking service
Breaking
--------
* Support for retries enabled by default on all operations in the Application Performance Monitoring control plane service
====================
2.57.0 - 2022-02-15
====================
Added
------
* Support for the AI Vision service
* Support for the Threat Intelligence service
* Support for creation of NoSQL database tables with on-demand throughput capacity in the NoSQL Database Cloud service
* Support for tagging features in the Oracle Container Engine for Kubernetes (OKE) service
* Support for trace snapshots in the Application Performance Monitoring service
* Support for auditing and alerts in the Data Safe service
* Support for data discovery and data masking in the Data Safe service
* Support for customized subscriptions and delivery of announcements by email and SMS in the Announcements service
Breaking
--------
* The API `query_old` was removed from `query_client` in the Application Performance Monitoring service
====================
2.56.0 - 2022-02-08
====================
Added
-----
* Support for managing tablespaces in the Database Management service
* Support for upgrading and managing payment for subscriptions in the Account Management service
* Support for listing fast launch job configurations in the Data Science service
Breaking changes
-----
* Support for retries enabled by default on all operations in the Application Performance Monitoring service
* The type for the `bill_to_address` parameter was changed from `Address` to `BillToAddress` in the invoice model of the Account Management service
* `payment_method` was made a required property of the `payment_detail` model of the Account Management service
====================
2.55.1 - 2022-02-01
====================
Added
------
* Support for calling Oracle Cloud Infrastructure services in the ap-dcc-canberra-1 region
* Support for the Console Dashboard service
* Support for capacity reservation in the Container Engine for Kubernetes service
* Support for tagging in the Container Engine for Kubernetes service
* Support for fetching listings by image OCID in the Marketplace service
* Support for underscores and hyphens in project resource names in the DevOps service
* Support for cross-region cloning in the Database service
====================
2.55.0 - 2022-01-25
====================
Added
-----
* Support for OneSubscription services
* Support for specifying if a run or application is streaming or batch in the Data Flow service
* Support for updating the Instance Configuration of an Instance Pool within a Cluster Network in the Compute Management service
* Updated documentation for Cross Region ADG feature for Autonomous Database in the Database service
Breaking
--------
* Support for retries enabled by default on all operations in the Object Storage service
====================
2.54.1 - 2022-01-18
====================
Added
------
* Support for calling Oracle Cloud Infrastructure services in the me-dcc-muscat-1 region
* Support for the Visual Builder service
* Support for cross-region replication of volume groups in the Block Storage service
* Support for boot volume encryption in the Container Engine for Kubernetes service
* Support for adding metadata to records when creating and updating records in the Data Labeling service
* Support for global export formats in snapshot datasets in the Data Labeling service
* Support for adding labeling instructions to datasets in the Data Labeling service
* Support for updating autonomous dataguard associations for autonomous container databases in the Database service
* Support for setting up automatic failover when creating autonomous container databases in the Database service
* Support for setting the RECO storage size when updating a database system in the Database service
* Support for reconnecting refreshable clones to source for autonomous databases on shared infrastructure in the Database service
* Support for checking if an autonomous database on shared infrastructure can be reconnected to source, in the Database service
====================
2.54.0 - 2022-01-11
====================
Added
------
* Support for calling Oracle Cloud Infrastructure services in the af-johannesburg-1 region
* Support for multiple protocols on the same listener in the Network Load Balancing service
* IPv6 support in the Network Load Balancing service
* Support for creating Enterprise Manager-based Solaris and SunOS host targets in the Operations Insights service
* Support for choosing Data Guard type (Active Data Guard or regular) on databases in the Database service
* Support for allowing control characters in responses as requested in https://github.com/oracle/oci-python-sdk/issues/404. Please see the github issue for more details
Fixed
-----
* The root cause of the issue causing data corruption as mentioned in https://github.com/oracle/oci-python-sdk/issues/410 has been fixed. Please see the github issue for more details
Breaking
--------
* Support for retries enabled by default on all operations in the Java Management service
====================
2.53.1 - 2021-12-21
====================
Fixed
-----
* Fixes the potential data corruption issue as described in https://github.com/oracle/oci-python-sdk/issues/410. Customers using FIPS compliant openssl versions are advised to enable FIPS with the ways described in https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/fips-libraries.html.
====================
2.53.0 - 2021-12-14
====================
Added
-----
* Support for node replacement in the VMWare Solution service
* Support for ingestion of SQL stats metrics in the Operations Insights service
* Support for AWR hub integration in the Operations Insights service
* Support for automatically generating logical entities from filename patterns and relationships between business terms across glossaries in the Data Catalog service
* Support for automatic start/stop at scheduled times in the Database service
* Support for cloud VM cluster resources on autonomous dedicated databases in the Database service
* Support for external Hive metastores in the Big Data service
* Support for batch detection/inference in the AI Language service
* Support for dimensions on monitoring targets in the Service Connector Hub service
* Support for invoice operations in the Account Management service
* Support for custom CA trust stores in the API Gateway service
* Support for generating scoped database tokens in the Identity service
* Support for database passwords for users, for logging into database accounts, in the Identity service
Fixed
-----
* Fixed an issue where multipart upload operations to Object Storage service throws SSLError on Oracle Linux instances