Skip to content

Commit

Permalink
added version group v0
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-przybyl-wttech committed Jun 15, 2024
1 parent c1a9ae1 commit fbfb25b
Show file tree
Hide file tree
Showing 21 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/wttech/pulumi-aem/sdk/go/aem/compose"
"github.com/wttech/pulumi-aem/sdk/v0/go/aem/compose"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion docs/installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The AEM provider is available as a package in following Pulumi languages:

* JavaScript/TypeScript: [`@wttech/aem`](https://www.npmjs.com/package/@wttech/aem)
* Python: [`wttech_aem`](https://pypi.org/project/wttech-aem/)
* Go: [`github.com/wttech/pulumi-aem/sdk/go/aem`](https://pkg.go.dev/github.com/wttech/pulumi-aem/sdk)
* Go: [`github.com/wttech/pulumi-aem/sdk/v0/go/aem`](https://pkg.go.dev/github.com/wttech/pulumi-aem/sdk/v0)
* .NET: [`WTTech.Aem`](https://www.nuget.org/packages/WTTech.Aem)

## Setup
Expand Down
2 changes: 1 addition & 1 deletion examples/go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/wttech/pulumi-aem/sdk/go/aem/compose"
"github.com/wttech/pulumi-aem/sdk/v0/go/aem/compose"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/go_aws_ssh/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/pulumi/pulumi-aws/sdk/v6 v6.21.0
github.com/pulumi/pulumi/sdk/v3 v3.104.2
github.com/wttech/pulumi-aem/sdk v0.1.1
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions examples/go_aws_ssh/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaO
github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-lib v2.4.1+incompatible h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=
github.com/uber/jaeger-lib v2.4.1+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=
github.com/wttech/pulumi-aem/sdk v0.1.1 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk v0.1.1/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
2 changes: 1 addition & 1 deletion examples/go_aws_ssh/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/wttech/pulumi-aem/sdk/go/aem/compose"
"github.com/wttech/pulumi-aem/sdk/v0/go/aem/compose"
)

//go:embed aem.yml
Expand Down
2 changes: 1 addition & 1 deletion examples/go_aws_ssm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/pulumi/pulumi-aws/sdk/v6 v6.21.0
github.com/pulumi/pulumi/sdk/v3 v3.104.2
github.com/wttech/pulumi-aem/sdk v0.1.1
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions examples/go_aws_ssm/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaO
github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-lib v2.4.1+incompatible h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=
github.com/uber/jaeger-lib v2.4.1+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=
github.com/wttech/pulumi-aem/sdk v0.1.1 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk v0.1.1/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
2 changes: 1 addition & 1 deletion examples/go_aws_ssm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/wttech/pulumi-aem/sdk/go/aem/compose"
"github.com/wttech/pulumi-aem/sdk/v0/go/aem/compose"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/go_bare_metal/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/pulumi/pulumi/sdk/v3 v3.104.2
github.com/wttech/pulumi-aem/sdk v0.1.1
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions examples/go_bare_metal/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaO
github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-lib v2.4.1+incompatible h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=
github.com/uber/jaeger-lib v2.4.1+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=
github.com/wttech/pulumi-aem/sdk v0.1.1 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk v0.1.1/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2 h1:hpnRJvoigvWlBobDD1U020xr2PKJgFJLRtigPwBRDXo=
github.com/wttech/pulumi-aem/sdk/v0 v0.1.2/go.mod h1:bLqhv6ocsTED27YdraFgaeBfnSIac0yYT7bfHXobVew=
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
2 changes: 1 addition & 1 deletion examples/go_bare_metal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
_ "embed"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/wttech/pulumi-aem/sdk/go/aem/compose"
"github.com/wttech/pulumi-aem/sdk/v0/go/aem/compose"
)

//go:embed ec2-key.cer
Expand Down
4 changes: 2 additions & 2 deletions provider/cmd/pulumi-resource-aem/schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aem",
"displayName": "Adobe Experience Manager",
"version": "0.1.2-alpha.1717632695+85d1fce1",
"version": "0.1.2-alpha.1718457163+fe3b80af",
"description": "Easily manage Adobe Experience Manager (AEM) instances in the cloud without a deep dev-ops knowledge",
"keywords": [
"pulumi",
Expand All @@ -25,7 +25,7 @@
"rootNamespace": "WTTech"
},
"go": {
"importBasePath": "github.com/wttech/pulumi-aem/sdk/go/aem",
"importBasePath": "github.com/wttech/pulumi-aem/sdk/v0/go/aem",
"generateResourceContainerTypes": true
},
"nodejs": {
Expand Down
2 changes: 1 addition & 1 deletion provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func Provider() p.Provider {
},
},
"go": goGen.GoPackageInfo{
ImportBasePath: "github.com/wttech/pulumi-aem/sdk/go/aem",
ImportBasePath: "github.com/wttech/pulumi-aem/sdk/v0/go/aem",
GenerateResourceContainerTypes: true,
},
"python": pythonGen.PackageInfo{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2-alpha.1717632695+85d1fce1
0.1.2-alpha.1718457163+fe3b80af
2 changes: 1 addition & 1 deletion sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/wttech/pulumi-aem/sdk
module github.com/wttech/pulumi-aem/sdk/v0

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/aem/compose/init.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/go/aem/compose/instance.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/go/aem/compose/pulumiTypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/go/aem/init.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/go/aem/provider.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fbfb25b

Please sign in to comment.