Skip to content

Commit 0256a05

Browse files
authored
Releasing version 15.6.0
Releasing version 15.6.0
2 parents aa28c95 + 352f7a1 commit 0256a05

File tree

90 files changed

+4654
-88
lines changed

Some content is hidden

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

90 files changed

+4654
-88
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+
## 15.6.0 - 2020-02-18
8+
### Added
9+
- Support for the NoSQL Database service
10+
- Support for filtering database versions by storage management type in the Database service
11+
- Support for specifying paid listing types within pricing models in the Marketplace service
12+
- Support for primary and non-primary instance types in the Content and Experience service
13+
714
## 15.5.0 - 2020-02-11
815
### Added
916
- Support for listing supported database versions for Autonomous Database Serverless, and selecting a version at provisioning time in the Database 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.cloud.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 applicationmigration datacatalog dataflow datascience ##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 applicationmigration datacatalog dataflow datascience nosql ##SPECNAME##
44
NON_GEN_TARGETS = common common/auth objectstorage/transfer example
55
TARGETS = $(NON_GEN_TARGETS) $(GEN_TARGETS)
66

common/client_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,4 +627,3 @@ func TestHomeDir(t *testing.T) {
627627
_, e := os.Stat(h)
628628
assert.NoError(t, e)
629629
}
630-

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.

containerengine/containerengine_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func NewContainerEngineClientWithConfigurationProvider(configProvider common.Con
3939

4040
// SetRegion overrides the region of this client.
4141
func (client *ContainerEngineClient) SetRegion(region string) {
42-
client.Host = common.StringToRegion(region).EndpointForTemplate("containerengine", "https://containerengine.{region}.{secondLevelDomain}")
42+
client.Host = common.StringToRegion(region).EndpointForTemplate("containerengine", "https://containerengine.{region}.oci.{secondLevelDomain}")
4343
}
4444

4545
// SetConfigurationProvider sets the configuration provider including the region, returns an error if is not valid

database/list_db_versions_request_response.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ type ListDbVersionsRequest struct {
2626
// The DB system OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system.
2727
DbSystemId *string `mandatory:"false" contributesTo:"query" name:"dbSystemId"`
2828

29+
// The storage option used in DB system to list database versions for that storage manager.
30+
// ASM - Automatic storage management
31+
// LVM - Logical Volume management
32+
StorageManagement DbSystemOptionsStorageManagementEnum `mandatory:"false" contributesTo:"query" name:"storageManagement" omitEmpty:"true"`
33+
2934
// Unique Oracle-assigned identifier for the request.
3035
// If you need to contact Oracle about a particular request, please provide the request ID.
3136
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`

events/action.go

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ type Action interface {
2020
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the action.
2121
GetId() *string
2222

23-
// A message generated by the Events service about the current state of this rule.
23+
// A message generated by the Events service about the current state of this action.
2424
GetLifecycleMessage() *string
2525

2626
// The current state of the rule.
2727
GetLifecycleState() ActionLifecycleStateEnum
2828

29+
// Whether or not this action is currently enabled.
30+
// Example: `true`
31+
GetIsEnabled() *bool
32+
2933
// A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering
3034
// confidential information.
3135
GetDescription() *string
@@ -36,6 +40,7 @@ type action struct {
3640
Id *string `mandatory:"true" json:"id"`
3741
LifecycleMessage *string `mandatory:"true" json:"lifecycleMessage"`
3842
LifecycleState ActionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
43+
IsEnabled *bool `mandatory:"false" json:"isEnabled"`
3944
Description *string `mandatory:"false" json:"description"`
4045
ActionType string `json:"actionType"`
4146
}
@@ -54,6 +59,7 @@ func (m *action) UnmarshalJSON(data []byte) error {
5459
m.Id = s.Model.Id
5560
m.LifecycleMessage = s.Model.LifecycleMessage
5661
m.LifecycleState = s.Model.LifecycleState
62+
m.IsEnabled = s.Model.IsEnabled
5763
m.Description = s.Model.Description
5864
m.ActionType = s.Model.ActionType
5965

@@ -101,6 +107,11 @@ func (m action) GetLifecycleState() ActionLifecycleStateEnum {
101107
return m.LifecycleState
102108
}
103109

110+
//GetIsEnabled returns IsEnabled
111+
func (m action) GetIsEnabled() *bool {
112+
return m.IsEnabled
113+
}
114+
104115
//GetDescription returns Description
105116
func (m action) GetDescription() *string {
106117
return m.Description

events/create_rule_details.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,14 @@ type CreateRuleDetails struct {
3030
// all events with two curly brackets: `{}`
3131
// For more examples, see
3232
// Matching Events with Filters (https://docs.cloud.oracle.com/iaas/Content/Events/Concepts/filterevents.htm).
33-
// * For a condition with fileds to match an event, the event must contain all the field names
33+
// * For a condition with fields to match an event, the event must contain all the field names
3434
// listed in the condition. Field names must appear in the condition with the same nesting
3535
// structure used in the event.
3636
// For a list of reference events, see
3737
// Services that Produce Events (https://docs.cloud.oracle.com/iaas/Content/Events/Reference/eventsproducers.htm).
3838
// * Rules apply to events in the compartment in which you create them and any child compartments.
3939
// This means that a condition specified by a rule only matches events emitted from resources in
4040
// the compartment or any of its child compartments.
41-
// * The condition is a string value in a JSON object, but numbers in conditions are converted
42-
// from strings to numbers before they are evaluated for matches. This means that 100, 100.0 or
43-
// 1.0e2 are all considered equal.
44-
// * Boolean values are converted to numbers and then evaluated. This means true and True are
45-
// considered equal, as are False and false.
4641
// * Wildcard matching is supported with the asterisk (*) character.
4742
// For examples of wildcard matching, see
4843
// Matching Events with Filters (https://docs.cloud.oracle.com/iaas/Content/Events/Concepts/filterevents.htm)

events/events_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func NewEventsClientWithConfigurationProvider(configProvider common.Configuratio
3838

3939
// SetRegion overrides the region of this client.
4040
func (client *EventsClient) SetRegion(region string) {
41-
client.Host = common.StringToRegion(region).EndpointForTemplate("events", "https://events.{region}.{secondLevelDomain}")
41+
client.Host = common.StringToRegion(region).EndpointForTemplate("events", "https://events.{region}.oci.{secondLevelDomain}")
4242
}
4343

4444
// SetConfigurationProvider sets the configuration provider including the region, returns an error if is not valid

events/faa_s_action.go

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ type FaaSAction struct {
2020
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the action.
2121
Id *string `mandatory:"true" json:"id"`
2222

23-
// A message generated by the Events service about the current state of this rule.
23+
// A message generated by the Events service about the current state of this action.
2424
LifecycleMessage *string `mandatory:"true" json:"lifecycleMessage"`
2525

26+
// Whether or not this action is currently enabled.
27+
// Example: `true`
28+
IsEnabled *bool `mandatory:"false" json:"isEnabled"`
29+
2630
// A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering
2731
// confidential information.
2832
Description *string `mandatory:"false" json:"description"`
@@ -49,6 +53,11 @@ func (m FaaSAction) GetLifecycleState() ActionLifecycleStateEnum {
4953
return m.LifecycleState
5054
}
5155

56+
//GetIsEnabled returns IsEnabled
57+
func (m FaaSAction) GetIsEnabled() *bool {
58+
return m.IsEnabled
59+
}
60+
5261
//GetDescription returns Description
5362
func (m FaaSAction) GetDescription() *string {
5463
return m.Description

0 commit comments

Comments
 (0)