Skip to content

Commit

Permalink
Merge pull request #2535 in SDK/oci-go-sdk from merge_to_github2023-0…
Browse files Browse the repository at this point in the history
…9-25 to github

Releasing Version 65.49.2

Squashed commit of the following:

commit a36e6ecc3beca7ae1c89ef1f01b3093eacad642d
Author: oci-dex-release-bot <[email protected]>
Date:   Mon Sep 25 20:20:07 2023 +0000

    Releasing version 65 49 2
  • Loading branch information
DEXREQ Automation committed Sep 25, 2023
1 parent 8344b6a commit 884eecd
Show file tree
Hide file tree
Showing 1,894 changed files with 19,255 additions and 17,484 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

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

## 65.49.2 - 2023-09-26
### Added
- Support for listing compute performances and storage performances in Database service
- Support for private endpoints for external key managers in Key Management service
- Support for additional parameters in vaults and keys for external key managers in Key Management service
- Support for domains while creating integration instances in Oracle Integration Cloud service


## 65.49.1 - 2023-09-12
### Added
- Support for SQL tuning sets in Database Management service
Expand Down
14 changes: 10 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ TARGETS_TEST = $(patsubst %,test-%, $(TARGETS_WITH_TESTS))
TARGETS_TESTFILTERED = $(patsubst %,testfiltered-%, $(TARGETS_WITH_TESTS))
TARGETS_INTEG_TEST = $(patsubst %,test-%, $(TARGETS_WITH_INTEG_TESTS))
TARGETS_RELEASE= $(patsubst %,release-%, $(TARGETS))
TARGETS_STATIC = $(patsubst %,staticcheck-%, $(TARGETS))
GOLINT=$(GOPATH)/bin/golint
STATICCHECK=$(GOPATH)/bin/staticcheck
LINT_FLAGS=-min_confidence 0.9 -set_exit_status

AUTOTEST_DIR = autotest
Expand All @@ -23,11 +25,9 @@ EXCLUDED_CLEAN_DIRECTORIES = objectstorage/transfer*

.PHONY: $(TARGETS_BUILD) $(TARGET_TEST)

build: lint $(TARGETS_BUILD)
build: static-check $(TARGETS_BUILD)

static-check:
@staticcheck ./...
@echo "Success: No static check warnings"
static-check: $(TARGETS_STATIC)

test: build $(TARGETS_TEST)

Expand All @@ -53,6 +53,12 @@ $(TARGETS_LINT): lint-%:%
(cd $< && $(GOLINT) $(LINT_FLAGS) .);\
fi

$(TARGETS_STATIC): staticcheck-%:%
@echo "Formating and Static-Checking: $<"
@(cd $< && gofmt -s -w .)
@(cd $< && $(STATICCHECK) ./...);\


# for sample code, only build them via 'go test -c'
$(TARGETS_BUILD): build-%:%
@echo "building: $<"
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,13 @@ Linting (performed by golint) can be done with the following command:
```
make lint
```
This command is also run by the make build and make test commands.
Linting will perform a number of formatting changes across the code base.

Staticcheck can be run with:

```
make static-check
```
This command is also run by the make build and make test commands.
Staticcheck will provide formatting warnings but will not make any changes to any files.
You can also cause staticcheck to be run before calls to "git commit" with the pre-commit plugin.

Expand Down
16 changes: 8 additions & 8 deletions accessgovernancecp/accessgovernancecp_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (client *AccessGovernanceCPClient) ConfigurationProvider() *common.Configur

// ChangeGovernanceInstanceCompartment Moves a GovernanceInstance resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/ChangeGovernanceInstanceCompartment.go.html to see an example of how to use ChangeGovernanceInstanceCompartment API.
// A default retry strategy applies to this operation ChangeGovernanceInstanceCompartment()
Expand Down Expand Up @@ -156,7 +156,7 @@ func (client AccessGovernanceCPClient) changeGovernanceInstanceCompartment(ctx c

// CreateGovernanceInstance Creates a new GovernanceInstance.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/CreateGovernanceInstance.go.html to see an example of how to use CreateGovernanceInstance API.
// A default retry strategy applies to this operation CreateGovernanceInstance()
Expand Down Expand Up @@ -219,7 +219,7 @@ func (client AccessGovernanceCPClient) createGovernanceInstance(ctx context.Cont

// DeleteGovernanceInstance Deletes an existing GovernanceInstance.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/DeleteGovernanceInstance.go.html to see an example of how to use DeleteGovernanceInstance API.
// A default retry strategy applies to this operation DeleteGovernanceInstance()
Expand Down Expand Up @@ -282,7 +282,7 @@ func (client AccessGovernanceCPClient) deleteGovernanceInstance(ctx context.Cont

// GetGovernanceInstance Gets a GovernanceInstance by OCID.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/GetGovernanceInstance.go.html to see an example of how to use GetGovernanceInstance API.
// A default retry strategy applies to this operation GetGovernanceInstance()
Expand Down Expand Up @@ -340,7 +340,7 @@ func (client AccessGovernanceCPClient) getGovernanceInstance(ctx context.Context

// GetGovernanceInstanceConfiguration Gets the tenancy-wide configuration for GovernanceInstances
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/GetGovernanceInstanceConfiguration.go.html to see an example of how to use GetGovernanceInstanceConfiguration API.
// A default retry strategy applies to this operation GetGovernanceInstanceConfiguration()
Expand Down Expand Up @@ -398,7 +398,7 @@ func (client AccessGovernanceCPClient) getGovernanceInstanceConfiguration(ctx co

// ListGovernanceInstances Returns a list of Governance Instances.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/ListGovernanceInstances.go.html to see an example of how to use ListGovernanceInstances API.
// A default retry strategy applies to this operation ListGovernanceInstances()
Expand Down Expand Up @@ -456,7 +456,7 @@ func (client AccessGovernanceCPClient) listGovernanceInstances(ctx context.Conte

// UpdateGovernanceInstance Updates the GovernanceInstance.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/UpdateGovernanceInstance.go.html to see an example of how to use UpdateGovernanceInstance API.
// A default retry strategy applies to this operation UpdateGovernanceInstance()
Expand Down Expand Up @@ -514,7 +514,7 @@ func (client AccessGovernanceCPClient) updateGovernanceInstance(ctx context.Cont

// UpdateGovernanceInstanceConfiguration Updates the tenancy-wide configuration for GovernanceInstances
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/accessgovernancecp/UpdateGovernanceInstanceConfiguration.go.html to see an example of how to use UpdateGovernanceInstanceConfiguration API.
// A default retry strategy applies to this operation UpdateGovernanceInstanceConfiguration()
Expand Down
36 changes: 18 additions & 18 deletions adm/adm_applicationdependencymanagement_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (client *ApplicationDependencyManagementClient) ConfigurationProvider() *co

// CancelWorkRequest Cancel work request with the given ID.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API.
// A default retry strategy applies to this operation CancelWorkRequest()
Expand Down Expand Up @@ -151,7 +151,7 @@ func (client ApplicationDependencyManagementClient) cancelWorkRequest(ctx contex

// ChangeKnowledgeBaseCompartment Moves a Knowledge Base from one compartment to another.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ChangeKnowledgeBaseCompartment.go.html to see an example of how to use ChangeKnowledgeBaseCompartment API.
// A default retry strategy applies to this operation ChangeKnowledgeBaseCompartment()
Expand Down Expand Up @@ -214,7 +214,7 @@ func (client ApplicationDependencyManagementClient) changeKnowledgeBaseCompartme

// ChangeVulnerabilityAuditCompartment Moves a Vulnerability Audit from one compartment to another.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ChangeVulnerabilityAuditCompartment.go.html to see an example of how to use ChangeVulnerabilityAuditCompartment API.
// A default retry strategy applies to this operation ChangeVulnerabilityAuditCompartment()
Expand Down Expand Up @@ -277,7 +277,7 @@ func (client ApplicationDependencyManagementClient) changeVulnerabilityAuditComp

// CreateKnowledgeBase Creates a new Knowledge Base.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CreateKnowledgeBase.go.html to see an example of how to use CreateKnowledgeBase API.
// A default retry strategy applies to this operation CreateKnowledgeBase()
Expand Down Expand Up @@ -340,7 +340,7 @@ func (client ApplicationDependencyManagementClient) createKnowledgeBase(ctx cont

// CreateVulnerabilityAudit Creates a new Vulnerability Audit by providing a tree of Application Dependencies.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CreateVulnerabilityAudit.go.html to see an example of how to use CreateVulnerabilityAudit API.
// A default retry strategy applies to this operation CreateVulnerabilityAudit()
Expand Down Expand Up @@ -403,7 +403,7 @@ func (client ApplicationDependencyManagementClient) createVulnerabilityAudit(ctx

// DeleteKnowledgeBase Deletes the specified Knowledge Base.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/DeleteKnowledgeBase.go.html to see an example of how to use DeleteKnowledgeBase API.
// A default retry strategy applies to this operation DeleteKnowledgeBase()
Expand Down Expand Up @@ -461,7 +461,7 @@ func (client ApplicationDependencyManagementClient) deleteKnowledgeBase(ctx cont

// DeleteVulnerabilityAudit Deletes the specified Vulnerability Audit.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/DeleteVulnerabilityAudit.go.html to see an example of how to use DeleteVulnerabilityAudit API.
// A default retry strategy applies to this operation DeleteVulnerabilityAudit()
Expand Down Expand Up @@ -519,7 +519,7 @@ func (client ApplicationDependencyManagementClient) deleteVulnerabilityAudit(ctx

// GetKnowledgeBase Returns the details of the specified Knowledge Base.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetKnowledgeBase.go.html to see an example of how to use GetKnowledgeBase API.
// A default retry strategy applies to this operation GetKnowledgeBase()
Expand Down Expand Up @@ -577,7 +577,7 @@ func (client ApplicationDependencyManagementClient) getKnowledgeBase(ctx context

// GetVulnerabilityAudit Returns the details of the specified Vulnerability Audit.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetVulnerabilityAudit.go.html to see an example of how to use GetVulnerabilityAudit API.
// A default retry strategy applies to this operation GetVulnerabilityAudit()
Expand Down Expand Up @@ -635,7 +635,7 @@ func (client ApplicationDependencyManagementClient) getVulnerabilityAudit(ctx co

// GetWorkRequest Gets the status of the work request with the given ID.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API.
// A default retry strategy applies to this operation GetWorkRequest()
Expand Down Expand Up @@ -693,7 +693,7 @@ func (client ApplicationDependencyManagementClient) getWorkRequest(ctx context.C

// ListApplicationDependencyVulnerabilities Returns a list of Application Dependencies with their associated vulnerabilities.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListApplicationDependencyVulnerabilities.go.html to see an example of how to use ListApplicationDependencyVulnerabilities API.
// A default retry strategy applies to this operation ListApplicationDependencyVulnerabilities()
Expand Down Expand Up @@ -752,7 +752,7 @@ func (client ApplicationDependencyManagementClient) listApplicationDependencyVul
// ListKnowledgeBases Returns a list of KnowledgeBases based on the specified query parameters.
// At least id or compartmentId query parameter must be provided.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListKnowledgeBases.go.html to see an example of how to use ListKnowledgeBases API.
// A default retry strategy applies to this operation ListKnowledgeBases()
Expand Down Expand Up @@ -811,7 +811,7 @@ func (client ApplicationDependencyManagementClient) listKnowledgeBases(ctx conte
// ListVulnerabilityAudits Returns a list of Vulnerability Audits based on the specified query parameters.
// At least one of id, compartmentId or knowledgeBaseId query parameter must be provided.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListVulnerabilityAudits.go.html to see an example of how to use ListVulnerabilityAudits API.
// A default retry strategy applies to this operation ListVulnerabilityAudits()
Expand Down Expand Up @@ -869,7 +869,7 @@ func (client ApplicationDependencyManagementClient) listVulnerabilityAudits(ctx

// ListWorkRequestErrors Return a (paginated) list of errors for a given work request.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API.
// A default retry strategy applies to this operation ListWorkRequestErrors()
Expand Down Expand Up @@ -927,7 +927,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequestErrors(ctx co

// ListWorkRequestLogs Return a (paginated) list of logs for a given work request.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API.
// A default retry strategy applies to this operation ListWorkRequestLogs()
Expand Down Expand Up @@ -985,7 +985,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequestLogs(ctx cont

// ListWorkRequests Lists the work requests in a compartment.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API.
// A default retry strategy applies to this operation ListWorkRequests()
Expand Down Expand Up @@ -1043,7 +1043,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequests(ctx context

// UpdateKnowledgeBase Updates one or more attributes of the specified Knowledge Base.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/UpdateKnowledgeBase.go.html to see an example of how to use UpdateKnowledgeBase API.
// A default retry strategy applies to this operation UpdateKnowledgeBase()
Expand Down Expand Up @@ -1101,7 +1101,7 @@ func (client ApplicationDependencyManagementClient) updateKnowledgeBase(ctx cont

// UpdateVulnerabilityAudit Updates one or more attributes of the specified Vulnerability Audit.
//
// See also
// # See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/UpdateVulnerabilityAudit.go.html to see an example of how to use UpdateVulnerabilityAudit API.
// A default retry strategy applies to this operation UpdateVulnerabilityAudit()
Expand Down
Loading

0 comments on commit 884eecd

Please sign in to comment.