You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
7
+
## 65.89.2 - 2025-04-22
8
+
### Added
9
+
- Support for patch management in the Database Lifecycle Management service
10
+
- Support for restricting public network access to service instances in the Visual Builder service
11
+
- Support for iSCSI-3 persistent reservations on block volume in the Core services (Networking, Compute, Block Volume)
12
+
7
13
## 65.89.1 - 2025-04-15
8
14
### Added
9
15
- Support for applying guardrails, enabling content moderation and detection of Prompt Injection and Personally Identifiable Information (PII) in the Generative AI Inference service
// 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
+
// Kubernetes Engine API
6
+
//
7
+
// API for the Kubernetes Engine service (also known as the Container Engine for Kubernetes service). Use this API to build, deploy,
8
+
// and manage cloud-native applications. For more information, see
9
+
// Overview of Kubernetes Engine (https://docs.oracle.com/iaas/Content/ContEng/Concepts/contengoverview.htm).
10
+
//
11
+
12
+
package containerengine
13
+
14
+
import (
15
+
"fmt"
16
+
"github.com/oracle/oci-go-sdk/v65/common"
17
+
"strings"
18
+
)
19
+
20
+
// ClusterNode The properties that define a cluster node.
21
+
typeClusterNodestruct {
22
+
23
+
// The OCID of the compute instance backing this node.
24
+
Id*string`mandatory:"false" json:"id"`
25
+
26
+
// The OCID of the cluster to which this node belongs.
Copy file name to clipboardExpand all lines: containerengine/containerengine_client.go
+126Lines changed: 126 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2268,6 +2268,132 @@ func (client ContainerEngineClient) listWorkloadMappings(ctx context.Context, re
2268
2268
returnresponse, err
2269
2269
}
2270
2270
2271
+
// RebootClusterNode perform reboot action to node in cluster
2272
+
//
2273
+
// # See also
2274
+
//
2275
+
// Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/RebootClusterNode.go.html to see an example of how to use RebootClusterNode API.
2276
+
// A default retry strategy applies to this operation RebootClusterNode()
// ReplaceBootVolumeClusterNode perform cycle action to node in cluster
2335
+
//
2336
+
// # See also
2337
+
//
2338
+
// Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ReplaceBootVolumeClusterNode.go.html to see an example of how to use ReplaceBootVolumeClusterNode API.
2339
+
// A default retry strategy applies to this operation ReplaceBootVolumeClusterNode()
// 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
+
// Kubernetes Engine API
6
+
//
7
+
// API for the Kubernetes Engine service (also known as the Container Engine for Kubernetes service). Use this API to build, deploy,
8
+
// and manage cloud-native applications. For more information, see
9
+
// Overview of Kubernetes Engine (https://docs.oracle.com/iaas/Content/ContEng/Concepts/contengoverview.htm).
10
+
//
11
+
12
+
package containerengine
13
+
14
+
import (
15
+
"strings"
16
+
)
17
+
18
+
// CycleModeEnum Enum with underlying type: string
19
+
typeCycleModeEnumstring
20
+
21
+
// Set of constants representing the allowable values for CycleModeEnum
// 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
+
// Kubernetes Engine API
6
+
//
7
+
// API for the Kubernetes Engine service (also known as the Container Engine for Kubernetes service). Use this API to build, deploy,
8
+
// and manage cloud-native applications. For more information, see
9
+
// Overview of Kubernetes Engine (https://docs.oracle.com/iaas/Content/ContEng/Concepts/contengoverview.htm).
10
+
//
11
+
12
+
package containerengine
13
+
14
+
import (
15
+
"fmt"
16
+
"github.com/oracle/oci-go-sdk/v65/common"
17
+
"strings"
18
+
)
19
+
20
+
// Image Describes image metadata.
21
+
typeImagestruct {
22
+
23
+
// The Oracle Cloud ID (OCID) that uniquely identifies the image.
24
+
Id*string`mandatory:"false" json:"id"`
25
+
26
+
// The OCID of the compartment that the image was created in.
0 commit comments