Skip to content

Commit da5dd37

Browse files
authored
Releasing version 7.0.0
Releasing version 7.0.0
2 parents 13d13cf + 2fde531 commit da5dd37

File tree

107 files changed

+5333
-95
lines changed

Some content is hidden

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

107 files changed

+5333
-95
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ 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+
## 7.0.0 - 2019-08-13
8+
### Added
9+
- Support for the Data Transfer service
10+
- Support for the Zurich (ZRH) region
11+
12+
### Breaking changes
13+
- Breaking changes were made in the Web Application Acceleration and Security (WAAS) service
14+
- `WorkRequestSummaryOperationTypePurgeWaasPolicy` const removed from `waas/work_request_summary.go`
15+
- `WorkRequestOperationTypesPurgeWaasPolicy` const removed from `waas/work_request_operation_types.go`
16+
- `WorkRequestOperationTypesPurgeWaasPolicy` const removed from `waas/work_request.go`
17+
- `IssuerName` in `Certificate` struct changed type from `*CertificateSubjectName` to `*CertificateIssuerName`
18+
- `LifecycleState` changed from array of string to array of `ListCertificateLifeCycleStateEnum` in `waas/list_certificates_request_response.go` and `waas/list_waas_policies_request_response.go`
19+
- `Etag` was removed from the following structs:
20+
- `AcceptRecommendationsResponse`
21+
- `DeleteWaasPolicyResponse`
22+
- `UpdateAccessRulesResponse`
23+
- `UpdateCaptchasResponse`
24+
- `UpdateDeviceFingerprintChallengeResponse`
25+
- `UpdateGoodBotsResponse`
26+
- `UpdateHumanInteractionChallengeResponse`
27+
- `UpdateJsChallengeResponse`
28+
- `UpdatePolicyConfigResponse`
29+
- `UpdateProtectionRulesResponse`
30+
- `UpdateProtectionSettingsResponse`
31+
- `UpdateThreatFeedsResponse`
32+
- `UpdateWaasPolicyResponse`
33+
- `UpdateWafAddressRateLimitingResponse`
34+
- `UpdateWafConfigResponse`
35+
- `UpdateWhitelistsResponse`
36+
737
## 6.2.0 - 2019-08-06
838
### Added
939
- Support for IPv6 load balancers in the Load Balancing 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 ##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 ##SPECNAME##
44
NON_GEN_TARGETS = common common/auth objectstorage/transfer example
55
TARGETS = $(NON_GEN_TARGETS) $(GEN_TARGETS)
66

common/common.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ const (
3030
RegionAPSeoul1 Region = "ap-seoul-1"
3131
//RegionAPMumbai1 region for mumbai
3232
RegionAPMumbai1 Region = "ap-mumbai-1"
33+
//RegionEUZurich1 region for Zurich
34+
RegionEUZurich1 Region = "eu-zurich-1"
3335

3436
//RegionUSLangley1 region for langley
3537
RegionUSLangley1 Region = "us-langley-1"
@@ -59,6 +61,7 @@ var regionRealm = map[Region]string{
5961
RegionAPTokyo1: "oc1",
6062
RegionAPSeoul1: "oc1",
6163
RegionAPMumbai1: "oc1",
64+
RegionEUZurich1: "oc1",
6265

6366
RegionUSLangley1: "oc2",
6467
RegionUSLuke1: "oc2",
@@ -122,6 +125,8 @@ func StringToRegion(stringRegion string) (r Region) {
122125
r = RegionAPSeoul1
123126
case "ap-mumbai-1":
124127
r = RegionAPMumbai1
128+
case "eu-zurich-1":
129+
r = RegionEUZurich1
125130
case "us-langley-1":
126131
r = RegionUSLangley1
127132
case "us-luke-1":

common/version.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dts/attach_devices_details.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
// DTS API
5+
//
6+
// A description of the DTS API
7+
//
8+
9+
package dts
10+
11+
import (
12+
"github.com/oracle/oci-go-sdk/common"
13+
)
14+
15+
// AttachDevicesDetails The representation of AttachDevicesDetails
16+
type AttachDevicesDetails struct {
17+
18+
// List of TransferDeviceLabel's
19+
DeviceLabels []string `mandatory:"false" json:"deviceLabels"`
20+
}
21+
22+
func (m AttachDevicesDetails) String() string {
23+
return common.PointerString(m)
24+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
package dts
5+
6+
import (
7+
"github.com/oracle/oci-go-sdk/common"
8+
"net/http"
9+
)
10+
11+
// AttachDevicesToTransferPackageRequest wrapper for the AttachDevicesToTransferPackage operation
12+
type AttachDevicesToTransferPackageRequest struct {
13+
14+
// ID of the Transfer Job
15+
Id *string `mandatory:"true" contributesTo:"path" name:"id"`
16+
17+
// Label of the Transfer Package
18+
TransferPackageLabel *string `mandatory:"true" contributesTo:"path" name:"transferPackageLabel"`
19+
20+
// Labels of Transfer Devices to attach
21+
AttachDevicesDetails `contributesTo:"body"`
22+
23+
// Unique Oracle-assigned identifier for the request.
24+
// If you need to contact Oracle about a particular request, please provide the request ID.
25+
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
26+
27+
// Metadata about the request. This information will not be transmitted to the service, but
28+
// represents information that the SDK will consume to drive retry behavior.
29+
RequestMetadata common.RequestMetadata
30+
}
31+
32+
func (request AttachDevicesToTransferPackageRequest) String() string {
33+
return common.PointerString(request)
34+
}
35+
36+
// HTTPRequest implements the OCIRequest interface
37+
func (request AttachDevicesToTransferPackageRequest) HTTPRequest(method, path string) (http.Request, error) {
38+
return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
39+
}
40+
41+
// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
42+
func (request AttachDevicesToTransferPackageRequest) RetryPolicy() *common.RetryPolicy {
43+
return request.RequestMetadata.RetryPolicy
44+
}
45+
46+
// AttachDevicesToTransferPackageResponse wrapper for the AttachDevicesToTransferPackage operation
47+
type AttachDevicesToTransferPackageResponse struct {
48+
49+
// The underlying http response
50+
RawResponse *http.Response
51+
52+
OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
53+
54+
Etag *string `presentIn:"header" name:"etag"`
55+
}
56+
57+
func (response AttachDevicesToTransferPackageResponse) String() string {
58+
return common.PointerString(response)
59+
}
60+
61+
// HTTPResponse implements the OCIResponse interface
62+
func (response AttachDevicesToTransferPackageResponse) HTTPResponse() *http.Response {
63+
return response.RawResponse
64+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
// DTS API
5+
//
6+
// A description of the DTS API
7+
//
8+
9+
package dts
10+
11+
import (
12+
"github.com/oracle/oci-go-sdk/common"
13+
)
14+
15+
// ChangeTransferJobCompartmentDetails The representation of ChangeTransferJobCompartmentDetails
16+
type ChangeTransferJobCompartmentDetails struct {
17+
18+
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment into which the resources should be moved.
19+
CompartmentId *string `mandatory:"true" json:"compartmentId"`
20+
}
21+
22+
func (m ChangeTransferJobCompartmentDetails) String() string {
23+
return common.PointerString(m)
24+
}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
package dts
5+
6+
import (
7+
"github.com/oracle/oci-go-sdk/common"
8+
"net/http"
9+
)
10+
11+
// ChangeTransferJobCompartmentRequest wrapper for the ChangeTransferJobCompartment operation
12+
type ChangeTransferJobCompartmentRequest struct {
13+
14+
// ID of the Transfer Job
15+
TransferJobId *string `mandatory:"true" contributesTo:"path" name:"transferJobId"`
16+
17+
// CompartmentId of the destination compartment
18+
ChangeTransferJobCompartmentDetails `contributesTo:"body"`
19+
20+
// The entity tag to match. Optional, if set, the update will be successful only if the
21+
// object's tag matches the tag specified in the request.
22+
IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"`
23+
24+
// Unique Oracle-assigned identifier for the request. If you need to contact Oracle about
25+
// a particular request, please provide the request ID.
26+
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
27+
28+
// A token that uniquely identifies a request so it can be retried in case of a timeout or
29+
// server error without risk of executing that same action again. Retry tokens expire after 24
30+
// hours, but can be invalidated before then due to conflicting operations (e.g., if a resource
31+
// has been deleted and purged from the system, then a retry of the original creation request
32+
// may be rejected).
33+
OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"`
34+
35+
// Metadata about the request. This information will not be transmitted to the service, but
36+
// represents information that the SDK will consume to drive retry behavior.
37+
RequestMetadata common.RequestMetadata
38+
}
39+
40+
func (request ChangeTransferJobCompartmentRequest) String() string {
41+
return common.PointerString(request)
42+
}
43+
44+
// HTTPRequest implements the OCIRequest interface
45+
func (request ChangeTransferJobCompartmentRequest) HTTPRequest(method, path string) (http.Request, error) {
46+
return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
47+
}
48+
49+
// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
50+
func (request ChangeTransferJobCompartmentRequest) RetryPolicy() *common.RetryPolicy {
51+
return request.RequestMetadata.RetryPolicy
52+
}
53+
54+
// ChangeTransferJobCompartmentResponse wrapper for the ChangeTransferJobCompartment operation
55+
type ChangeTransferJobCompartmentResponse struct {
56+
57+
// The underlying http response
58+
RawResponse *http.Response
59+
60+
OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
61+
62+
// For optimistic concurrency control. See 'if-match'.
63+
Etag *string `presentIn:"header" name:"etag"`
64+
}
65+
66+
func (response ChangeTransferJobCompartmentResponse) String() string {
67+
return common.PointerString(response)
68+
}
69+
70+
// HTTPResponse implements the OCIResponse interface
71+
func (response ChangeTransferJobCompartmentResponse) HTTPResponse() *http.Response {
72+
return response.RawResponse
73+
}
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
package dts
5+
6+
import (
7+
"github.com/oracle/oci-go-sdk/common"
8+
"net/http"
9+
)
10+
11+
// CreateTransferApplianceAdminCredentialsRequest wrapper for the CreateTransferApplianceAdminCredentials operation
12+
type CreateTransferApplianceAdminCredentialsRequest struct {
13+
14+
// ID of the Transfer Job
15+
Id *string `mandatory:"true" contributesTo:"path" name:"id"`
16+
17+
// Label of the Transfer Appliance
18+
TransferApplianceLabel *string `mandatory:"true" contributesTo:"path" name:"transferApplianceLabel"`
19+
20+
AdminPublicKey TransferAppliancePublicKey `contributesTo:"body"`
21+
22+
// Unique Oracle-assigned identifier for the request.
23+
// If you need to contact Oracle about a particular request, please provide the request ID.
24+
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
25+
26+
// Metadata about the request. This information will not be transmitted to the service, but
27+
// represents information that the SDK will consume to drive retry behavior.
28+
RequestMetadata common.RequestMetadata
29+
}
30+
31+
func (request CreateTransferApplianceAdminCredentialsRequest) String() string {
32+
return common.PointerString(request)
33+
}
34+
35+
// HTTPRequest implements the OCIRequest interface
36+
func (request CreateTransferApplianceAdminCredentialsRequest) HTTPRequest(method, path string) (http.Request, error) {
37+
return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
38+
}
39+
40+
// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
41+
func (request CreateTransferApplianceAdminCredentialsRequest) RetryPolicy() *common.RetryPolicy {
42+
return request.RequestMetadata.RetryPolicy
43+
}
44+
45+
// CreateTransferApplianceAdminCredentialsResponse wrapper for the CreateTransferApplianceAdminCredentials operation
46+
type CreateTransferApplianceAdminCredentialsResponse struct {
47+
48+
// The underlying http response
49+
RawResponse *http.Response
50+
51+
// The TransferApplianceCertificate instance
52+
TransferApplianceCertificate `presentIn:"body"`
53+
54+
OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
55+
56+
Etag *string `presentIn:"header" name:"etag"`
57+
}
58+
59+
func (response CreateTransferApplianceAdminCredentialsResponse) String() string {
60+
return common.PointerString(response)
61+
}
62+
63+
// HTTPResponse implements the OCIResponse interface
64+
func (response CreateTransferApplianceAdminCredentialsResponse) HTTPResponse() *http.Response {
65+
return response.RawResponse
66+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
// DTS API
5+
//
6+
// A description of the DTS API
7+
//
8+
9+
package dts
10+
11+
import (
12+
"github.com/oracle/oci-go-sdk/common"
13+
)
14+
15+
// CreateTransferApplianceDetails The representation of CreateTransferApplianceDetails
16+
type CreateTransferApplianceDetails struct {
17+
CustomerShippingAddress *ShippingAddress `mandatory:"false" json:"customerShippingAddress"`
18+
}
19+
20+
func (m CreateTransferApplianceDetails) String() string {
21+
return common.PointerString(m)
22+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
// Code generated. DO NOT EDIT.
3+
4+
// DTS API
5+
//
6+
// A description of the DTS API
7+
//
8+
9+
package dts
10+
11+
import (
12+
"github.com/oracle/oci-go-sdk/common"
13+
)
14+
15+
// CreateTransferApplianceEntitlementDetails The representation of CreateTransferApplianceEntitlementDetails
16+
type CreateTransferApplianceEntitlementDetails struct {
17+
CompartmentId *string `mandatory:"false" json:"compartmentId"`
18+
19+
RequestorName *string `mandatory:"false" json:"requestorName"`
20+
21+
RequestorEmail *string `mandatory:"false" json:"requestorEmail"`
22+
}
23+
24+
func (m CreateTransferApplianceEntitlementDetails) String() string {
25+
return common.PointerString(m)
26+
}

0 commit comments

Comments
 (0)