Skip to content

Commit af3de93

Browse files
Releasing version 65.97.1
Releasing version 65.97.1
2 parents a08e91e + 8316325 commit af3de93

File tree

60 files changed

+5733
-30
lines changed

Some content is hidden

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

60 files changed

+5733
-30
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.97.1 - 2025-08-05
8+
### Added
9+
- Support for the Oracle Multicloud Hub service
10+
- Support for raw request API to support http emails with attachments in the Email Delivery service
11+
- Support for language auto-detection for Whisper Model in the AI Speech service
12+
- Support for prompting and custom prompts for Whisper Model in the AI Speech service
13+
714
## 65.97.0 - 2025-07-29
815
### Added
916
- Support for the APIP Platform 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 distributeddatabase apiaccesscontrol wlms dbmulticloud apiplatform ##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 apiaccesscontrol wlms dbmulticloud apiplatform multicloud ##SPECNAME##
44
NON_GEN_TARGETS = common common/auth objectstorage/transfer example
55
TARGETS = $(NON_GEN_TARGETS) $(GEN_TARGETS)
66

aispeech/transcription_model_details.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ type TranscriptionModelDetails struct {
4040
// - de-DE: German - Germany
4141
// - it-IT: Italian - Italy
4242
// Whisper supported language codes are (Whisper models are locale agnostic).
43+
// - auto: Auto-detect language
4344
// - af: Afrikaans
4445
// - ar: Arabic
4546
// - az: Azerbaijani
@@ -177,6 +178,7 @@ const (
177178
TranscriptionModelDetailsLanguageCodeFrFr TranscriptionModelDetailsLanguageCodeEnum = "fr-FR"
178179
TranscriptionModelDetailsLanguageCodeDeDe TranscriptionModelDetailsLanguageCodeEnum = "de-DE"
179180
TranscriptionModelDetailsLanguageCodeItIt TranscriptionModelDetailsLanguageCodeEnum = "it-IT"
181+
TranscriptionModelDetailsLanguageCodeAuto TranscriptionModelDetailsLanguageCodeEnum = "auto"
180182
TranscriptionModelDetailsLanguageCodeAf TranscriptionModelDetailsLanguageCodeEnum = "af"
181183
TranscriptionModelDetailsLanguageCodeAr TranscriptionModelDetailsLanguageCodeEnum = "ar"
182184
TranscriptionModelDetailsLanguageCodeAz TranscriptionModelDetailsLanguageCodeEnum = "az"
@@ -247,6 +249,7 @@ var mappingTranscriptionModelDetailsLanguageCodeEnum = map[string]TranscriptionM
247249
"fr-FR": TranscriptionModelDetailsLanguageCodeFrFr,
248250
"de-DE": TranscriptionModelDetailsLanguageCodeDeDe,
249251
"it-IT": TranscriptionModelDetailsLanguageCodeItIt,
252+
"auto": TranscriptionModelDetailsLanguageCodeAuto,
250253
"af": TranscriptionModelDetailsLanguageCodeAf,
251254
"ar": TranscriptionModelDetailsLanguageCodeAr,
252255
"az": TranscriptionModelDetailsLanguageCodeAz,
@@ -317,6 +320,7 @@ var mappingTranscriptionModelDetailsLanguageCodeEnumLowerCase = map[string]Trans
317320
"fr-fr": TranscriptionModelDetailsLanguageCodeFrFr,
318321
"de-de": TranscriptionModelDetailsLanguageCodeDeDe,
319322
"it-it": TranscriptionModelDetailsLanguageCodeItIt,
323+
"auto": TranscriptionModelDetailsLanguageCodeAuto,
320324
"af": TranscriptionModelDetailsLanguageCodeAf,
321325
"ar": TranscriptionModelDetailsLanguageCodeAr,
322326
"az": TranscriptionModelDetailsLanguageCodeAz,
@@ -398,6 +402,7 @@ func GetTranscriptionModelDetailsLanguageCodeEnumStringValues() []string {
398402
"fr-FR",
399403
"de-DE",
400404
"it-IT",
405+
"auto",
401406
"af",
402407
"ar",
403408
"az",

aispeech/transcription_settings.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ import (
1818
// TranscriptionSettings Processes to perform on the generated transcription.
1919
type TranscriptionSettings struct {
2020
Diarization *Diarization `mandatory:"false" json:"diarization"`
21+
22+
// Simple key-value pair for setting model specific properties. For more details, refer the documentation.
23+
AdditionalSettings map[string]string `mandatory:"false" json:"additionalSettings"`
2124
}
2225

2326
func (m TranscriptionSettings) String() string {

common/regions.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ const (
8686
RegionMERiyadh1 Region = "me-riyadh-1"
8787
//RegionAPDelhi1 region Delhi
8888
RegionAPDelhi1 Region = "ap-delhi-1"
89-
//RegionAPKulai1 region Kulai
90-
RegionAPKulai1 Region = "ap-kulai-1"
9189
//RegionAPBatam1 region Batam
9290
RegionAPBatam1 Region = "ap-batam-1"
9391
//RegionUSLangley1 region Langley
@@ -202,7 +200,6 @@ var shortNameRegion = map[string]Region{
202200
"xsp": RegionAPSingapore2,
203201
"ruh": RegionMERiyadh1,
204202
"onm": RegionAPDelhi1,
205-
"fyv": RegionAPKulai1,
206203
"hsg": RegionAPBatam1,
207204
"lfi": RegionUSLangley1,
208205
"luf": RegionUSLuke1,
@@ -303,7 +300,6 @@ var regionRealm = map[Region]string{
303300
RegionAPSingapore2: "oc1",
304301
RegionMERiyadh1: "oc1",
305302
RegionAPDelhi1: "oc1",
306-
RegionAPKulai1: "oc1",
307303
RegionAPBatam1: "oc1",
308304

309305
RegionUSLangley1: "oc2",

common/regions.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -449,12 +449,6 @@
449449
"regionIdentifier": "ap-delhi-1",
450450
"realmDomainComponent": "oraclecloud.com"
451451
},
452-
{
453-
"regionKey": "fyv",
454-
"realmKey": "oc1",
455-
"regionIdentifier": "ap-kulai-1",
456-
"realmDomainComponent": "oraclecloud.com"
457-
},
458452
{
459453
"regionKey": "hsg",
460454
"realmKey": "oc1",

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.

dblm/dblm_dblifecyclemanagement_client.go

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func (client DbLifeCycleManagementClient) createVulnerabilityScan(ctx context.Co
145145
defer common.CloseBodyIfValid(httpResponse)
146146
response.RawResponse = httpResponse
147147
if err != nil {
148-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/VulnerabilityScan/CreateVulnerabilityScan"
148+
apiReferenceLink := ""
149149
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "CreateVulnerabilityScan", apiReferenceLink)
150150
return response, err
151151
}
@@ -203,7 +203,7 @@ func (client DbLifeCycleManagementClient) getPatchManagement(ctx context.Context
203203
defer common.CloseBodyIfValid(httpResponse)
204204
response.RawResponse = httpResponse
205205
if err != nil {
206-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/DblmPatchManagement/GetPatchManagement"
206+
apiReferenceLink := ""
207207
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "GetPatchManagement", apiReferenceLink)
208208
return response, err
209209
}
@@ -261,7 +261,7 @@ func (client DbLifeCycleManagementClient) getVulnerability(ctx context.Context,
261261
defer common.CloseBodyIfValid(httpResponse)
262262
response.RawResponse = httpResponse
263263
if err != nil {
264-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/DblmVulnerability/GetVulnerability"
264+
apiReferenceLink := ""
265265
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "GetVulnerability", apiReferenceLink)
266266
return response, err
267267
}
@@ -319,7 +319,7 @@ func (client DbLifeCycleManagementClient) getVulnerabilityScan(ctx context.Conte
319319
defer common.CloseBodyIfValid(httpResponse)
320320
response.RawResponse = httpResponse
321321
if err != nil {
322-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/VulnerabilityScan/GetVulnerabilityScan"
322+
apiReferenceLink := ""
323323
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "GetVulnerabilityScan", apiReferenceLink)
324324
return response, err
325325
}
@@ -377,7 +377,7 @@ func (client DbLifeCycleManagementClient) getWorkRequest(ctx context.Context, re
377377
defer common.CloseBodyIfValid(httpResponse)
378378
response.RawResponse = httpResponse
379379
if err != nil {
380-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/WorkRequest/GetWorkRequest"
380+
apiReferenceLink := ""
381381
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "GetWorkRequest", apiReferenceLink)
382382
return response, err
383383
}
@@ -435,7 +435,7 @@ func (client DbLifeCycleManagementClient) listAggregatedVulnerabilityData(ctx co
435435
defer common.CloseBodyIfValid(httpResponse)
436436
response.RawResponse = httpResponse
437437
if err != nil {
438-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/DblmVulnerability/ListAggregatedVulnerabilityData"
438+
apiReferenceLink := ""
439439
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListAggregatedVulnerabilityData", apiReferenceLink)
440440
return response, err
441441
}
@@ -493,7 +493,7 @@ func (client DbLifeCycleManagementClient) listDatabases(ctx context.Context, req
493493
defer common.CloseBodyIfValid(httpResponse)
494494
response.RawResponse = httpResponse
495495
if err != nil {
496-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/PatchDatabasesCollection/ListDatabases"
496+
apiReferenceLink := ""
497497
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListDatabases", apiReferenceLink)
498498
return response, err
499499
}
@@ -551,7 +551,7 @@ func (client DbLifeCycleManagementClient) listNotifications(ctx context.Context,
551551
defer common.CloseBodyIfValid(httpResponse)
552552
response.RawResponse = httpResponse
553553
if err != nil {
554-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/NotificationCollection/ListNotifications"
554+
apiReferenceLink := ""
555555
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListNotifications", apiReferenceLink)
556556
return response, err
557557
}
@@ -614,7 +614,7 @@ func (client DbLifeCycleManagementClient) listVulnerabilities(ctx context.Contex
614614
defer common.CloseBodyIfValid(httpResponse)
615615
response.RawResponse = httpResponse
616616
if err != nil {
617-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/DblmVulnerability/ListVulnerabilities"
617+
apiReferenceLink := ""
618618
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListVulnerabilities", apiReferenceLink)
619619
return response, err
620620
}
@@ -672,7 +672,7 @@ func (client DbLifeCycleManagementClient) listVulnerabilityResources(ctx context
672672
defer common.CloseBodyIfValid(httpResponse)
673673
response.RawResponse = httpResponse
674674
if err != nil {
675-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/VulnerabilityResourceCollection/ListVulnerabilityResources"
675+
apiReferenceLink := ""
676676
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListVulnerabilityResources", apiReferenceLink)
677677
return response, err
678678
}
@@ -730,7 +730,7 @@ func (client DbLifeCycleManagementClient) listVulnerabilityScans(ctx context.Con
730730
defer common.CloseBodyIfValid(httpResponse)
731731
response.RawResponse = httpResponse
732732
if err != nil {
733-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/VulnerabilityScanCollection/ListVulnerabilityScans"
733+
apiReferenceLink := ""
734734
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListVulnerabilityScans", apiReferenceLink)
735735
return response, err
736736
}
@@ -788,7 +788,7 @@ func (client DbLifeCycleManagementClient) listWorkRequestErrors(ctx context.Cont
788788
defer common.CloseBodyIfValid(httpResponse)
789789
response.RawResponse = httpResponse
790790
if err != nil {
791-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/WorkRequestError/ListWorkRequestErrors"
791+
apiReferenceLink := ""
792792
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListWorkRequestErrors", apiReferenceLink)
793793
return response, err
794794
}
@@ -846,7 +846,7 @@ func (client DbLifeCycleManagementClient) listWorkRequestLogs(ctx context.Contex
846846
defer common.CloseBodyIfValid(httpResponse)
847847
response.RawResponse = httpResponse
848848
if err != nil {
849-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/WorkRequestLogEntry/ListWorkRequestLogs"
849+
apiReferenceLink := ""
850850
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListWorkRequestLogs", apiReferenceLink)
851851
return response, err
852852
}
@@ -904,7 +904,7 @@ func (client DbLifeCycleManagementClient) listWorkRequests(ctx context.Context,
904904
defer common.CloseBodyIfValid(httpResponse)
905905
response.RawResponse = httpResponse
906906
if err != nil {
907-
apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/dbmgmt/20240102/WorkRequest/ListWorkRequests"
907+
apiReferenceLink := ""
908908
err = common.PostProcessServiceError(err, "DbLifeCycleManagement", "ListWorkRequests", apiReferenceLink)
909909
return response, err
910910
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// Copyright (c) 2016, 2018, 2025, Oracle and/or its affiliates. All rights reserved.
2+
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3+
// Code generated. DO NOT EDIT.
4+
5+
// Email Delivery Submission API
6+
//
7+
// Use the Email Delivery API to send high-volume and application-generated emails.
8+
// For more information, see Overview of the Email Delivery Service (https://docs.oracle.com/iaas/Content/Email/Concepts/overview.htm).
9+
//
10+
11+
package emaildataplane
12+
13+
import (
14+
"fmt"
15+
"github.com/oracle/oci-go-sdk/v65/common"
16+
"strings"
17+
)
18+
19+
// EmailRawSubmittedResponse Response object that is returned to sender upon successfully submitting the email request.
20+
type EmailRawSubmittedResponse struct {
21+
22+
// Email Delivery generated unique Envelope ID of the email submission. If you need to contact Email Delivery about a particular request, please provide the Envelope ID.
23+
EnvelopeId *string `mandatory:"true" json:"envelopeId"`
24+
25+
// Return list of suppressed email addresses.
26+
SuppressedRecipients []string `mandatory:"true" json:"suppressedRecipients"`
27+
28+
// The unique ID for the email's Message-ID header used for service log correlation.
29+
// Example: [email protected]
30+
MessageId *string `mandatory:"false" json:"messageId"`
31+
}
32+
33+
func (m EmailRawSubmittedResponse) String() string {
34+
return common.PointerString(m)
35+
}
36+
37+
// ValidateEnumValue returns an error when providing an unsupported enum value
38+
// This function is being called during constructing API request process
39+
// Not recommended for calling this function directly
40+
func (m EmailRawSubmittedResponse) ValidateEnumValue() (bool, error) {
41+
errMessage := []string{}
42+
43+
if len(errMessage) > 0 {
44+
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
45+
}
46+
return false, nil
47+
}

emaildataplane/email_submitted_response.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
// EmailSubmittedResponse Response object that is returned to sender upon successfully submitting the email request.
2020
type EmailSubmittedResponse struct {
2121

22-
// The unique ID for the email's Message-ID header used for service log correlation. The submission will return an error if the syntax is not a valid RFC 5322 Message-ID. This will be generated if not provided.
22+
// The unique ID for the email's Message-ID header used for service log correlation.
2323
// Example: [email protected]
2424
MessageId *string `mandatory:"true" json:"messageId"`
2525

0 commit comments

Comments
 (0)