Skip to content

Commit

Permalink
Releasing version 65.67.2
Browse files Browse the repository at this point in the history
Releasing version 65.67.2
  • Loading branch information
oci-dex-release-bot authored Jun 18, 2024
2 parents 31d2a19 + be662fd commit c2033ef
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 32 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ temp/
*.iml
.DS_Store
MakefileDevelopment.mk
scripts/
ocibuild.conf
shared-build-service-scripts/
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

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

## 65.67.2 - 2024-06-18
### Added
- Support for public connection urls and public endpoints for autonomous databases in the Database service
- Support for insurance claim document type in the AI Document service
- Support for Microsoft IIS discovery and monitoring in the Stack Monitoring service


## 65.67.1 - 2024-06-11
### Added
- Support for 23ai based databases in Globally Distributed Database service
Expand Down
64 changes: 34 additions & 30 deletions aidocument/document_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,42 +18,45 @@ type DocumentTypeEnum string

// Set of constants representing the allowable values for DocumentTypeEnum
const (
DocumentTypeInvoice DocumentTypeEnum = "INVOICE"
DocumentTypeReceipt DocumentTypeEnum = "RECEIPT"
DocumentTypeResume DocumentTypeEnum = "RESUME"
DocumentTypeTaxForm DocumentTypeEnum = "TAX_FORM"
DocumentTypeDriverLicense DocumentTypeEnum = "DRIVER_LICENSE"
DocumentTypePassport DocumentTypeEnum = "PASSPORT"
DocumentTypeBankStatement DocumentTypeEnum = "BANK_STATEMENT"
DocumentTypeCheck DocumentTypeEnum = "CHECK"
DocumentTypePayslip DocumentTypeEnum = "PAYSLIP"
DocumentTypeOthers DocumentTypeEnum = "OTHERS"
DocumentTypeInvoice DocumentTypeEnum = "INVOICE"
DocumentTypeReceipt DocumentTypeEnum = "RECEIPT"
DocumentTypeResume DocumentTypeEnum = "RESUME"
DocumentTypeTaxForm DocumentTypeEnum = "TAX_FORM"
DocumentTypeDriverLicense DocumentTypeEnum = "DRIVER_LICENSE"
DocumentTypePassport DocumentTypeEnum = "PASSPORT"
DocumentTypeBankStatement DocumentTypeEnum = "BANK_STATEMENT"
DocumentTypeCheck DocumentTypeEnum = "CHECK"
DocumentTypePayslip DocumentTypeEnum = "PAYSLIP"
DocumentTypeOthers DocumentTypeEnum = "OTHERS"
DocumentTypeInsuranceClaim DocumentTypeEnum = "INSURANCE_CLAIM"
)

var mappingDocumentTypeEnum = map[string]DocumentTypeEnum{
"INVOICE": DocumentTypeInvoice,
"RECEIPT": DocumentTypeReceipt,
"RESUME": DocumentTypeResume,
"TAX_FORM": DocumentTypeTaxForm,
"DRIVER_LICENSE": DocumentTypeDriverLicense,
"PASSPORT": DocumentTypePassport,
"BANK_STATEMENT": DocumentTypeBankStatement,
"CHECK": DocumentTypeCheck,
"PAYSLIP": DocumentTypePayslip,
"OTHERS": DocumentTypeOthers,
"INVOICE": DocumentTypeInvoice,
"RECEIPT": DocumentTypeReceipt,
"RESUME": DocumentTypeResume,
"TAX_FORM": DocumentTypeTaxForm,
"DRIVER_LICENSE": DocumentTypeDriverLicense,
"PASSPORT": DocumentTypePassport,
"BANK_STATEMENT": DocumentTypeBankStatement,
"CHECK": DocumentTypeCheck,
"PAYSLIP": DocumentTypePayslip,
"OTHERS": DocumentTypeOthers,
"INSURANCE_CLAIM": DocumentTypeInsuranceClaim,
}

var mappingDocumentTypeEnumLowerCase = map[string]DocumentTypeEnum{
"invoice": DocumentTypeInvoice,
"receipt": DocumentTypeReceipt,
"resume": DocumentTypeResume,
"tax_form": DocumentTypeTaxForm,
"driver_license": DocumentTypeDriverLicense,
"passport": DocumentTypePassport,
"bank_statement": DocumentTypeBankStatement,
"check": DocumentTypeCheck,
"payslip": DocumentTypePayslip,
"others": DocumentTypeOthers,
"invoice": DocumentTypeInvoice,
"receipt": DocumentTypeReceipt,
"resume": DocumentTypeResume,
"tax_form": DocumentTypeTaxForm,
"driver_license": DocumentTypeDriverLicense,
"passport": DocumentTypePassport,
"bank_statement": DocumentTypeBankStatement,
"check": DocumentTypeCheck,
"payslip": DocumentTypePayslip,
"others": DocumentTypeOthers,
"insurance_claim": DocumentTypeInsuranceClaim,
}

// GetDocumentTypeEnumValues Enumerates the set of values for DocumentTypeEnum
Expand All @@ -78,6 +81,7 @@ func GetDocumentTypeEnumStringValues() []string {
"CHECK",
"PAYSLIP",
"OTHERS",
"INSURANCE_CLAIM",
}
}

Expand Down
2 changes: 1 addition & 1 deletion common/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions database/autonomous_database.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ type AutonomousDatabase struct {

ConnectionUrls *AutonomousDatabaseConnectionUrls `mandatory:"false" json:"connectionUrls"`

// The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
PublicConnectionUrls *AutonomousDatabaseConnectionUrls `mandatory:"false" json:"publicConnectionUrls"`

// The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud.
// License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service.
// Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the
Expand Down Expand Up @@ -187,6 +190,9 @@ type AutonomousDatabase struct {
// The private endpoint for the resource.
PrivateEndpoint *string `mandatory:"false" json:"privateEndpoint"`

// The public endpoint for the private endpoint enabled resource.
PublicEndpoint *string `mandatory:"false" json:"publicEndpoint"`

// The resource's private endpoint label.
// - Setting the endpoint label to a non-empty string creates a private endpoint database.
// - Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
Expand Down
6 changes: 6 additions & 0 deletions database/autonomous_database_summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ type AutonomousDatabaseSummary struct {

ConnectionUrls *AutonomousDatabaseConnectionUrls `mandatory:"false" json:"connectionUrls"`

// The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
PublicConnectionUrls *AutonomousDatabaseConnectionUrls `mandatory:"false" json:"publicConnectionUrls"`

// The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud.
// License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service.
// Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the
Expand Down Expand Up @@ -188,6 +191,9 @@ type AutonomousDatabaseSummary struct {
// The private endpoint for the resource.
PrivateEndpoint *string `mandatory:"false" json:"privateEndpoint"`

// The public endpoint for the private endpoint enabled resource.
PublicEndpoint *string `mandatory:"false" json:"publicEndpoint"`

// The resource's private endpoint label.
// - Setting the endpoint label to a non-empty string creates a private endpoint database.
// - Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
Expand Down
4 changes: 4 additions & 0 deletions stackmonitoring/discovery_details.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ const (
DiscoveryDetailsResourceTypeOracleGoldengate DiscoveryDetailsResourceTypeEnum = "ORACLE_GOLDENGATE"
DiscoveryDetailsResourceTypeCustomResource DiscoveryDetailsResourceTypeEnum = "CUSTOM_RESOURCE"
DiscoveryDetailsResourceTypeOracleHttpServer DiscoveryDetailsResourceTypeEnum = "ORACLE_HTTP_SERVER"
DiscoveryDetailsResourceTypeMicrosoftIis DiscoveryDetailsResourceTypeEnum = "MICROSOFT_IIS"
)

var mappingDiscoveryDetailsResourceTypeEnum = map[string]DiscoveryDetailsResourceTypeEnum{
Expand All @@ -97,6 +98,7 @@ var mappingDiscoveryDetailsResourceTypeEnum = map[string]DiscoveryDetailsResourc
"ORACLE_GOLDENGATE": DiscoveryDetailsResourceTypeOracleGoldengate,
"CUSTOM_RESOURCE": DiscoveryDetailsResourceTypeCustomResource,
"ORACLE_HTTP_SERVER": DiscoveryDetailsResourceTypeOracleHttpServer,
"MICROSOFT_IIS": DiscoveryDetailsResourceTypeMicrosoftIis,
}

var mappingDiscoveryDetailsResourceTypeEnumLowerCase = map[string]DiscoveryDetailsResourceTypeEnum{
Expand All @@ -115,6 +117,7 @@ var mappingDiscoveryDetailsResourceTypeEnumLowerCase = map[string]DiscoveryDetai
"oracle_goldengate": DiscoveryDetailsResourceTypeOracleGoldengate,
"custom_resource": DiscoveryDetailsResourceTypeCustomResource,
"oracle_http_server": DiscoveryDetailsResourceTypeOracleHttpServer,
"microsoft_iis": DiscoveryDetailsResourceTypeMicrosoftIis,
}

// GetDiscoveryDetailsResourceTypeEnumValues Enumerates the set of values for DiscoveryDetailsResourceTypeEnum
Expand Down Expand Up @@ -144,6 +147,7 @@ func GetDiscoveryDetailsResourceTypeEnumStringValues() []string {
"ORACLE_GOLDENGATE",
"CUSTOM_RESOURCE",
"ORACLE_HTTP_SERVER",
"MICROSOFT_IIS",
}
}

Expand Down
4 changes: 4 additions & 0 deletions stackmonitoring/discovery_job_summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ const (
DiscoveryJobSummaryResourceTypeOracleGoldengate DiscoveryJobSummaryResourceTypeEnum = "ORACLE_GOLDENGATE"
DiscoveryJobSummaryResourceTypeCustomResource DiscoveryJobSummaryResourceTypeEnum = "CUSTOM_RESOURCE"
DiscoveryJobSummaryResourceTypeOracleHttpServer DiscoveryJobSummaryResourceTypeEnum = "ORACLE_HTTP_SERVER"
DiscoveryJobSummaryResourceTypeMicrosoftIis DiscoveryJobSummaryResourceTypeEnum = "MICROSOFT_IIS"
)

var mappingDiscoveryJobSummaryResourceTypeEnum = map[string]DiscoveryJobSummaryResourceTypeEnum{
Expand All @@ -136,6 +137,7 @@ var mappingDiscoveryJobSummaryResourceTypeEnum = map[string]DiscoveryJobSummaryR
"ORACLE_GOLDENGATE": DiscoveryJobSummaryResourceTypeOracleGoldengate,
"CUSTOM_RESOURCE": DiscoveryJobSummaryResourceTypeCustomResource,
"ORACLE_HTTP_SERVER": DiscoveryJobSummaryResourceTypeOracleHttpServer,
"MICROSOFT_IIS": DiscoveryJobSummaryResourceTypeMicrosoftIis,
}

var mappingDiscoveryJobSummaryResourceTypeEnumLowerCase = map[string]DiscoveryJobSummaryResourceTypeEnum{
Expand All @@ -154,6 +156,7 @@ var mappingDiscoveryJobSummaryResourceTypeEnumLowerCase = map[string]DiscoveryJo
"oracle_goldengate": DiscoveryJobSummaryResourceTypeOracleGoldengate,
"custom_resource": DiscoveryJobSummaryResourceTypeCustomResource,
"oracle_http_server": DiscoveryJobSummaryResourceTypeOracleHttpServer,
"microsoft_iis": DiscoveryJobSummaryResourceTypeMicrosoftIis,
}

// GetDiscoveryJobSummaryResourceTypeEnumValues Enumerates the set of values for DiscoveryJobSummaryResourceTypeEnum
Expand Down Expand Up @@ -183,6 +186,7 @@ func GetDiscoveryJobSummaryResourceTypeEnumStringValues() []string {
"ORACLE_GOLDENGATE",
"CUSTOM_RESOURCE",
"ORACLE_HTTP_SERVER",
"MICROSOFT_IIS",
}
}

Expand Down

0 comments on commit c2033ef

Please sign in to comment.