Provides operations on Azure networking resources using Pulumi.
import { CommonAzureConstruct, CommonAzureStackProps } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonAzureConstruct { constructor(name: string, props: CommonAzureStackProps) { super(name, props) this.props = props this.networkingManager.createVirtualNetwork('MyVirtualNetwork', this, props) }} Copy
import { CommonAzureConstruct, CommonAzureStackProps } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonAzureConstruct { constructor(name: string, props: CommonAzureStackProps) { super(name, props) this.props = props this.networkingManager.createVirtualNetwork('MyVirtualNetwork', this, props) }}
Optional
Provides operations on Azure networking resources using Pulumi.
Example