Skip to content

Commit

Permalink
Remove use of BaseProvider.PluginDownloadURL (#1483)
Browse files Browse the repository at this point in the history
We duplicated PluginDownloadURL into the BaseProvider schema block, but
this isn't needed. The PluginDownloadURL field in the top of the schema
will always have the same information, and it only makes sense to talk
about _one_ download url for the package because there's only one plugin
to download.

This starts the process of removing the field from BaseProvider, once
this is merged we can pull this update to pu/pu and remove the field
completely from there.
  • Loading branch information
Frassle authored Nov 25, 2024
1 parent 240fada commit d9ea949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/codegen/java/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,7 @@ import com.pulumi.deployment.Deployment;
`,
pkg.Parameterization.BaseProvider.Name,
pkg.Parameterization.BaseProvider.Version,
pkg.Parameterization.BaseProvider.PluginDownloadURL,
pkg.PluginDownloadURL,
pkg.Name,
base64.StdEncoding.EncodeToString(pkg.Parameterization.Parameter),
)
Expand Down

0 comments on commit d9ea949

Please sign in to comment.