Skip to content

Commit cf04aaf

Browse files
Releasing version 65.91.1
Releasing version 65.91.1
2 parents 5006b3e + 2cce330 commit cf04aaf

File tree

184 files changed

+17670
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+17670
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66

7+
## 65.91.1 - 2025-05-20
8+
### Added
9+
- Support for the Globally Distributed Database service
10+
- Support for listing the available upgrades (OS & GI) for VirtualMachine DB systems in the Database service
11+
- Support for running dry-run operations in the Database service
12+
- Support for Network Security Groups in MySQL HeatWave service
13+
714
## 65.91.0 - 2025-05-13
815
### Added
916
- Support for the Model Deployment service

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DOC_SERVER_URL=https:\/\/docs.oracle.com
22

3-
GEN_TARGETS = identity core objectstorage loadbalancer database audit dns filestorage email containerengine resourcesearch keymanagement announcementsservice healthchecks waas autoscaling streaming ons monitoring resourcemanager budget workrequests functions limits events dts oce oda analytics integration osmanagement marketplace apigateway datacatalog dataflow datascience nosql secrets vault bds cims datasafe mysql dataintegration ocvp usageapi blockchain loggingingestion logging loganalytics managementdashboard sch loggingsearch managementagent cloudguard opsi computeinstanceagent optimizer tenantmanagercontrolplane rover databasemanagement artifacts apmsynthetics goldengate apmcontrolplane apmtraces networkloadbalancer vulnerabilityscanning databasemigration servicecatalog ailanguage operatoraccesscontrol bastion genericartifactscontent jms devops aianomalydetection datalabelingservice datalabelingservicedataplane apmconfig waf certificates certificatesmanagement usage databasetools servicemanagerproxy appmgmtcontrol ospgateway identitydataplane visualbuilder osubusage osubsubscription osuborganizationsubscription osubbillingschedule dashboardservice threatintelligence aivision aispeech stackmonitoring servicemesh adm licensemanager onesubscription governancerulescontrolplane waa networkfirewall vnmonitoring emwarehouse lockbox fusionapps mediaservices opa opensearch cloudmigrations cloudbridge disasterrecovery containerinstances aidocument queue recovery vbsinst identitydomains accessgovernancecp ocicontrolcenter osmanagementhub fleetsoftwareupdate computecloudatcustomer marketplacepublisher redis jmsjavadownloads psql generativeai generativeaiinference capacitymanagement globallydistributeddatabase desktops emaildataplane clusterplacementgroups marketplaceprivateoffer resourcescheduler demandsignal fleetappsmanagement delegateaccesscontrol generativeaiagent generativeaiagentruntime securityattribute zpr dblm mngdmac lustrefilestorage modeldeployment ##SPECNAME##
3+
GEN_TARGETS = identity core objectstorage loadbalancer database audit dns filestorage email containerengine resourcesearch keymanagement announcementsservice healthchecks waas autoscaling streaming ons monitoring resourcemanager budget workrequests functions limits events dts oce oda analytics integration osmanagement marketplace apigateway datacatalog dataflow datascience nosql secrets vault bds cims datasafe mysql dataintegration ocvp usageapi blockchain loggingingestion logging loganalytics managementdashboard sch loggingsearch managementagent cloudguard opsi computeinstanceagent optimizer tenantmanagercontrolplane rover databasemanagement artifacts apmsynthetics goldengate apmcontrolplane apmtraces networkloadbalancer vulnerabilityscanning databasemigration servicecatalog ailanguage operatoraccesscontrol bastion genericartifactscontent jms devops aianomalydetection datalabelingservice datalabelingservicedataplane apmconfig waf certificates certificatesmanagement usage databasetools servicemanagerproxy appmgmtcontrol ospgateway identitydataplane visualbuilder osubusage osubsubscription osuborganizationsubscription osubbillingschedule dashboardservice threatintelligence aivision aispeech stackmonitoring servicemesh adm licensemanager onesubscription governancerulescontrolplane waa networkfirewall vnmonitoring emwarehouse lockbox fusionapps mediaservices opa opensearch cloudmigrations cloudbridge disasterrecovery containerinstances aidocument queue recovery vbsinst identitydomains accessgovernancecp ocicontrolcenter osmanagementhub fleetsoftwareupdate computecloudatcustomer marketplacepublisher redis jmsjavadownloads psql generativeai generativeaiinference capacitymanagement globallydistributeddatabase desktops emaildataplane clusterplacementgroups marketplaceprivateoffer resourcescheduler demandsignal fleetappsmanagement delegateaccesscontrol generativeaiagent generativeaiagentruntime securityattribute zpr dblm mngdmac lustrefilestorage modeldeployment distributeddatabase ##SPECNAME##
44
NON_GEN_TARGETS = common common/auth objectstorage/transfer example
55
TARGETS = $(NON_GEN_TARGETS) $(GEN_TARGETS)
66

common/version.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

database/autonomous_database_manual_refresh_request_response.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ type AutonomousDatabaseManualRefreshRequest struct {
3939
// Unique identifier for the request.
4040
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
4141

42+
// Indicates that the request is a dry run, if set to "true". A dry run request does not actually
43+
// creating or updating a resource and is used only to perform validation on the submitted data.
44+
OpcDryRun *bool `mandatory:"false" contributesTo:"header" name:"opc-dry-run"`
45+
4246
// Metadata about the request. This information will not be transmitted to the service, but
4347
// represents information that the SDK will consume to drive retry behavior.
4448
RequestMetadata common.RequestMetadata

database/autonomous_db_version_summary.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ type AutonomousDbVersionSummary struct {
3838
// True if this version of the Oracle Database software can be used for Always-Free Autonomous Databases.
3939
IsFreeTierEnabled *bool `mandatory:"false" json:"isFreeTierEnabled"`
4040

41+
// True if this Oracle Database software version can be used for Autonomous Databases for Developers.
42+
IsDevTierEnabled *bool `mandatory:"false" json:"isDevTierEnabled"`
43+
4144
// True if this version of the Oracle Database software has payments enabled.
4245
IsPaidEnabled *bool `mandatory:"false" json:"isPaidEnabled"`
4346

database/backup.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ type Backup struct {
4949
// The current state of the backup.
5050
LifecycleState BackupLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
5151

52-
// The Oracle Database edition of the DB system from which the database backup was taken.
52+
// The Oracle Database Edition that applies to all the databases on the DB system.
53+
// Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
5354
DatabaseEdition BackupDatabaseEditionEnum `mandatory:"false" json:"databaseEdition,omitempty"`
5455

5556
// The size of the database in gigabytes at the time the backup was taken.

database/backup_summary.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ type BackupSummary struct {
5151
// The current state of the backup.
5252
LifecycleState BackupSummaryLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
5353

54-
// The Oracle Database edition of the DB system from which the database backup was taken.
54+
// The Oracle Database Edition that applies to all the databases on the DB system.
55+
// Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
5556
DatabaseEdition BackupSummaryDatabaseEditionEnum `mandatory:"false" json:"databaseEdition,omitempty"`
5657

5758
// The size of the database in gigabytes at the time the backup was taken.

database/change_autonomous_database_compartment_request_response.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ type ChangeAutonomousDatabaseCompartmentRequest struct {
3939
// will be updated or deleted only if the etag you provide matches the resource's current etag value.
4040
IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"`
4141

42+
// Indicates that the request is a dry run, if set to "true". A dry run request does not actually
43+
// creating or updating a resource and is used only to perform validation on the submitted data.
44+
OpcDryRun *bool `mandatory:"false" contributesTo:"header" name:"opc-dry-run"`
45+
4246
// Metadata about the request. This information will not be transmitted to the service, but
4347
// represents information that the SDK will consume to drive retry behavior.
4448
RequestMetadata common.RequestMetadata

database/change_autonomous_database_subscription_request_response.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ type ChangeAutonomousDatabaseSubscriptionRequest struct {
3939
// will be updated or deleted only if the etag you provide matches the resource's current etag value.
4040
IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"`
4141

42+
// Indicates that the request is a dry run, if set to "true". A dry run request does not actually
43+
// creating or updating a resource and is used only to perform validation on the submitted data.
44+
OpcDryRun *bool `mandatory:"false" contributesTo:"header" name:"opc-dry-run"`
45+
4246
// Metadata about the request. This information will not be transmitted to the service, but
4347
// represents information that the SDK will consume to drive retry behavior.
4448
RequestMetadata common.RequestMetadata

database/change_disaster_recovery_configuration_request_response.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ type ChangeDisasterRecoveryConfigurationRequest struct {
3232
// Unique identifier for the request.
3333
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
3434

35+
// Indicates that the request is a dry run, if set to "true". A dry run request does not actually
36+
// creating or updating a resource and is used only to perform validation on the submitted data.
37+
OpcDryRun *bool `mandatory:"false" contributesTo:"header" name:"opc-dry-run"`
38+
3539
// Metadata about the request. This information will not be transmitted to the service, but
3640
// represents information that the SDK will consume to drive retry behavior.
3741
RequestMetadata common.RequestMetadata

0 commit comments

Comments
 (0)