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
Merge pull request #2513 in SDK/oci-go-sdk from merge_to_github2023-08-31 to github
Releasing Version 65.49.0
Squashed commit of the following:
commit 2b1a64ba8f3ae2234c2eb090361eeb0987f596bf
Author: oci-dex-release-bot <oci-dex-releases-bot_ww@oracle.com>
Date: Thu Aug 31 17:47:33 2023 +0000
Releasing version 65 49 0
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,24 @@ 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.49.0 - 2023-09-05
8
+
### Added
9
+
- Support for queue channels in the Queue Service
10
+
- Support for entity lineage retrieval and asynchronous glossary export in the Data Catalog service
11
+
- Support for filtering and sorting while listing work requests in the Container Instances service
12
+
- Support for the ability to create support requests for various support ticket types (TECH,LIMIT, ACCOUNT) in the Customer Incident Management Service
13
+
- Endpoint changed from https://incidentmanagement.{region}.{domainAndTopLevelDomain} to https://incidentmanagement.{region}.oci.{domainAndTopLevelDomain} (e.g. https://incidentmanagement.us-phoenix-1.oraclecloud.com to https://incidentmanagement.us-phoenix-1.oci.oraclecloud.com) in the Customer Incident Management Service
14
+
15
+
### Breaking Changes
16
+
- The type of property `Region` was changed from `RegionEnum` to `*string` in the models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
17
+
- The models `AvailabilityDomain`, `RegionEnum`, `CreateUserRequest`, and `UserClient` were removed from the Customer Incident Management Service
18
+
- The type of property `ProblemType` was changed from `string` to `ProblemType` in the `ValidateUserRequest` model in the Customer Incident Management Service
19
+
- The property `Source` was removed from the model `GetStatusRequest` in the Customer Incident Management Service
20
+
- The property `ProblemType` was renamed to `Problemtype` in the model `GetIncidentRequest` in the Customer Incident Management Service
21
+
- The property `AvailabilityDomain` was removed from the models `Resource` and `CreateResourceDetails` in the Customer Incident Management Service
22
+
- The property `Country` was removed from the model `CreateUserDetails` in the Customer Incident Management Service
23
+
24
+
7
25
## 65.48.0 - 2023-08-29
8
26
### Added
9
27
- Support for creating and updating network monitors in the Application Performance Monitoring Synthetics service
// Copyright (c) 2016, 2018, 2023, 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
+
// Support Management API
6
+
//
7
+
// Use the Support Management API to manage support requests.
8
+
// For more information, see Getting Help and Contacting Support (https://docs.cloud.oracle.com/iaas/Content/GSG/Tasks/contactingsupport.htm).
9
+
// **Note**: Before you can create service requests with this API,
10
+
// you need to have an Oracle Single Sign On (SSO) account,
11
+
// and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
12
+
//
13
+
14
+
package cims
15
+
16
+
import (
17
+
"encoding/json"
18
+
"fmt"
19
+
"github.com/oracle/oci-go-sdk/v65/common"
20
+
"strings"
21
+
)
22
+
23
+
// AccountItem Details about the AccountItem object.
24
+
typeAccountItemstruct {
25
+
26
+
// Unique identifier for the item.
27
+
ItemKey*string`mandatory:"true" json:"itemKey"`
28
+
29
+
// The display name of the item. Avoid entering confidential information.
// Use the Support Management API to manage support requests. For more information, see Getting Help and Contacting Support (https://docs.cloud.oracle.com/iaas/Content/GSG/Tasks/contactingsupport.htm). **Note**: Before you can create service requests with this API, you need to have an Oracle Single Sign On (SSO) account, and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
7
+
// Use the Support Management API to manage support requests.
8
+
// For more information, see Getting Help and Contacting Support (https://docs.cloud.oracle.com/iaas/Content/GSG/Tasks/contactingsupport.htm).
9
+
// **Note**: Before you can create service requests with this API,
10
+
// you need to have an Oracle Single Sign On (SSO) account,
11
+
// and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
8
12
//
9
13
10
14
package cims
@@ -22,7 +26,16 @@ type ActivityItem struct {
22
26
// Unique identifier for the item.
23
27
ItemKey*string`mandatory:"true" json:"itemKey"`
24
28
25
-
// The display name of the item.
29
+
// Comments added with the activity on the support ticket.
30
+
Comments*string`mandatory:"true" json:"comments"`
31
+
32
+
// The time when the activity was created, in milliseconds since epoch time.
0 commit comments