diff --git a/provider/cmd/pulumi-resource-azure-native/schema.json b/provider/cmd/pulumi-resource-azure-native/schema.json index d0721841eee0..20aefdfd83f3 100644 --- a/provider/cmd/pulumi-resource-azure-native/schema.json +++ b/provider/cmd/pulumi-resource-azure-native/schema.json @@ -782,9 +782,6 @@ } }, "nodejs": { - "dependencies": { - "@pulumi/pulumi": "^3.0.0" - }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", "respectSchemaVersion": true }, @@ -1043,9 +1040,6 @@ "enabled": true }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", - "requires": { - "pulumi": "\u003e=3.134.1,\u003c4.0.0" - }, "respectSchemaVersion": true, "usesIOClasses": true } diff --git a/provider/pkg/gen/__snapshots__/gen_vnet_test.snap b/provider/pkg/gen/__snapshots__/gen_vnet_test.snap index 93c0110d28c7..658999567132 100755 --- a/provider/pkg/gen/__snapshots__/gen_vnet_test.snap +++ b/provider/pkg/gen/__snapshots__/gen_vnet_test.snap @@ -10975,9 +10975,6 @@ } }, "nodejs": { - "dependencies": { - "@pulumi/pulumi": "^3.0.0" - }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", "respectSchemaVersion": true }, @@ -10990,9 +10987,6 @@ "enabled": true }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", - "requires": { - "pulumi": "\u003e=3.134.1,\u003c4.0.0" - }, "respectSchemaVersion": true, "usesIOClasses": true } diff --git a/provider/pkg/gen/schema.go b/provider/pkg/gen/schema.go index 49486fff23d4..c75bc880a08d 100644 --- a/provider/pkg/gen/schema.go +++ b/provider/pkg/gen/schema.go @@ -358,9 +358,6 @@ func PulumiSchema(rootDir string, providerMap openapi.AzureProviders, versioning "respectSchemaVersion": true, }) pkg.Language["nodejs"] = rawMessage(map[string]interface{}{ - "dependencies": map[string]string{ - "@pulumi/pulumi": "^3.0.0", - }, "readme": `The native Azure provider package offers support for all Azure Resource Manager (ARM) resources and their properties. Resources are exposed as types from modules based on Azure Resource Providers such as 'compute', 'network', 'storage', and 'web', among many others. Using this package @@ -371,11 +368,8 @@ version using infrastructure as code, which Pulumi then uses to drive the ARM AP pkg.Language["python"] = rawMessage(map[string]interface{}{ "moduleNameOverrides": pythonModuleNames, - "requires": map[string]string{ - "pulumi": ">=3.134.1,<4.0.0", - }, - "usesIOClasses": true, - "inputTypes": "classes-and-dicts", + "usesIOClasses": true, + "inputTypes": "classes-and-dicts", "readme": `The native Azure provider package offers support for all Azure Resource Manager (ARM) resources and their properties. Resources are exposed as types from modules based on Azure Resource Providers such as 'compute', 'network', 'storage', and 'web', among many others. Using this package diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index aac497d15808..c3f98b1ff0b0 100644 --- a/sdk/nodejs/package.json +++ b/sdk/nodejs/package.json @@ -15,7 +15,7 @@ "build": "tsc" }, "dependencies": { - "@pulumi/pulumi": "^3.0.0" + "@pulumi/pulumi": "^3.134.1" }, "devDependencies": { "@types/node": "^14",