Hi, our generated docs are incorrect. <https://ww...
# package-authoring
t
Hi, our generated docs are incorrect. https://www.pulumi.com/registry/packages/ovh/api-docs/cloudproject/getcapabilitiescontainerfilter/#example-usage For example, for this example, for the typescript language, the generated doc says:
Copy code
const capability = ovh.CloudProject.getCapabilitiesContainerFilter({
but it’s:
Copy code
const capability = ovh.cloudproject.getCapabilitiesContainerFilter({
“cloudproject” in lowercase How can we ask the generator to use “cloudproject” ans not “CloudProject”? Thank you
l
@thankful-match-46035 that is due to the capitalized module name in your provider definition: https://github.com/ovh/pulumi-ovh/blob/main/provider/resources.go#L47 Can you check what happens if you lowercase the definitions and regenerate the SDKs?
t
Hi @limited-rainbow-51650, changing CloudProject to cloudproject causes several errors during the “make build_sdks” command