Skip to content

Commit

Permalink
retract
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ibm committed Apr 20, 2022
1 parent 57484bf commit 99574b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
9 changes: 8 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/sumitkumartiwari/vpc-go-sdk

go 1.14
go 1.16

require (
github.com/IBM/go-sdk-core/v5 v5.9.2
Expand All @@ -9,3 +9,10 @@ require (
github.com/onsi/gomega v1.10.5
github.com/stretchr/testify v1.7.0
)


retract (
v1.0.2
v1.0.1
v1.0.0
)
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
Expand Down
8 changes: 4 additions & 4 deletions vpcv1/vpc_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ import (
// VpcV1 : The IBM Cloud Virtual Private Cloud (VPC) API can be used to programmatically provision and manage virtual
// server instances, along with subnets, volumes, load balancers, and more.
//
// API Version: 2022-03-30
// API Version: 2022-04-18
type VpcV1 struct {
Service *core.BaseService

// The API version, in format `YYYY-MM-DD`. For the API behavior documented here, specify any date between `2022-03-30`
// The API version, in format `YYYY-MM-DD`. For the API behavior documented here, specify any date between `2022-04-18`
// and today's date (UTC).
Version *string

Expand All @@ -62,7 +62,7 @@ type VpcV1Options struct {
URL string
Authenticator core.Authenticator

// The API version, in format `YYYY-MM-DD`. For the API behavior documented here, specify any date between `2022-03-30`
// The API version, in format `YYYY-MM-DD`. For the API behavior documented here, specify any date between `2022-04-18`
// and today's date (UTC).
Version *string
}
Expand Down Expand Up @@ -121,7 +121,7 @@ func NewVpcV1(options *VpcV1Options) (service *VpcV1, err error) {
}

if options.Version == nil {
options.Version = core.StringPtr("2022-03-30")
options.Version = core.StringPtr("2022-04-18")
}

service = &VpcV1{
Expand Down

0 comments on commit 99574b7

Please sign in to comment.