Last active
August 21, 2024 19:53
-
-
Save olafurnielsen/a25085a4d4b9d4d1c23b3ffd125b5f04 to your computer and use it in GitHub Desktop.
Importing specific Pulumi API versions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python | |
from pulumi_azure_native.network import v20230901 as network | |
# Typescript | |
import VirtualNetwork from "@pulumi/azure-native/network/v20230901"; | |
# Go | |
import ( | |
network "github.com/pulumi/pulumi-azure-native-sdk/network/v2/v20230901" | |
) | |
# C# | |
using Pulumi.AzureNative.Network.V20230901; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment