1. Packages
  2. Azure Native
  3. API Docs
  4. avs
  5. Addon
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.avs.Addon

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    An addon resource Azure REST API version: 2022-05-01. Prior API version in Azure Native 1.x: 2020-07-17-preview.

    Other available API versions: 2021-01-01-preview, 2023-03-01, 2023-09-01.

    Example Usage

    Addons_CreateOrUpdate_Arc

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var addon = new AzureNative.AVS.Addon("addon", new()
        {
            AddonName = "arc",
            PrivateCloudName = "cloud1",
            Properties = new AzureNative.AVS.Inputs.AddonArcPropertiesArgs
            {
                AddonType = "Arc",
                VCenter = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter",
            },
            ResourceGroupName = "group1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avs.NewAddon(ctx, "addon", &avs.AddonArgs{
    			AddonName:        pulumi.String("arc"),
    			PrivateCloudName: pulumi.String("cloud1"),
    			Properties: avs.AddonArcProperties{
    				AddonType: "Arc",
    				VCenter:   "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter",
    			},
    			ResourceGroupName: pulumi.String("group1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.avs.Addon;
    import com.pulumi.azurenative.avs.AddonArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var addon = new Addon("addon", AddonArgs.builder()        
                .addonName("arc")
                .privateCloudName("cloud1")
                .properties(AddonArcPropertiesArgs.builder()
                    .addonType("Arc")
                    .vCenter("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter")
                    .build())
                .resourceGroupName("group1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    addon = azure_native.avs.Addon("addon",
        addon_name="arc",
        private_cloud_name="cloud1",
        properties=azure_native.avs.AddonArcPropertiesArgs(
            addon_type="Arc",
            v_center="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter",
        ),
        resource_group_name="group1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const addon = new azure_native.avs.Addon("addon", {
        addonName: "arc",
        privateCloudName: "cloud1",
        properties: {
            addonType: "Arc",
            vCenter: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter",
        },
        resourceGroupName: "group1",
    });
    
    resources:
      addon:
        type: azure-native:avs:Addon
        properties:
          addonName: arc
          privateCloudName: cloud1
          properties:
            addonType: Arc
            vCenter: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg_test/providers/Microsoft.ConnectedVMwarevSphere/VCenters/test-vcenter
          resourceGroupName: group1
    

    Addons_CreateOrUpdate_HCX

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var addon = new AzureNative.AVS.Addon("addon", new()
        {
            AddonName = "hcx",
            PrivateCloudName = "cloud1",
            Properties = new AzureNative.AVS.Inputs.AddonHcxPropertiesArgs
            {
                AddonType = "HCX",
                Offer = "VMware MaaS Cloud Provider (Enterprise)",
            },
            ResourceGroupName = "group1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avs.NewAddon(ctx, "addon", &avs.AddonArgs{
    			AddonName:        pulumi.String("hcx"),
    			PrivateCloudName: pulumi.String("cloud1"),
    			Properties: avs.AddonHcxProperties{
    				AddonType: "HCX",
    				Offer:     "VMware MaaS Cloud Provider (Enterprise)",
    			},
    			ResourceGroupName: pulumi.String("group1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.avs.Addon;
    import com.pulumi.azurenative.avs.AddonArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var addon = new Addon("addon", AddonArgs.builder()        
                .addonName("hcx")
                .privateCloudName("cloud1")
                .properties(AddonArcPropertiesArgs.builder()
                    .addonType("HCX")
                    .offer("VMware MaaS Cloud Provider (Enterprise)")
                    .build())
                .resourceGroupName("group1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    addon = azure_native.avs.Addon("addon",
        addon_name="hcx",
        private_cloud_name="cloud1",
        properties=azure_native.avs.AddonHcxPropertiesArgs(
            addon_type="HCX",
            offer="VMware MaaS Cloud Provider (Enterprise)",
        ),
        resource_group_name="group1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const addon = new azure_native.avs.Addon("addon", {
        addonName: "hcx",
        privateCloudName: "cloud1",
        properties: {
            addonType: "HCX",
            offer: "VMware MaaS Cloud Provider (Enterprise)",
        },
        resourceGroupName: "group1",
    });
    
    resources:
      addon:
        type: azure-native:avs:Addon
        properties:
          addonName: hcx
          privateCloudName: cloud1
          properties:
            addonType: HCX
            offer: VMware MaaS Cloud Provider (Enterprise)
          resourceGroupName: group1
    

    Addons_CreateOrUpdate_SRM

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var addon = new AzureNative.AVS.Addon("addon", new()
        {
            AddonName = "srm",
            PrivateCloudName = "cloud1",
            Properties = new AzureNative.AVS.Inputs.AddonSrmPropertiesArgs
            {
                AddonType = "SRM",
                LicenseKey = "41915178-A8FF-4A4D-B683-6D735AF5E3F5",
            },
            ResourceGroupName = "group1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avs.NewAddon(ctx, "addon", &avs.AddonArgs{
    			AddonName:        pulumi.String("srm"),
    			PrivateCloudName: pulumi.String("cloud1"),
    			Properties: avs.AddonSrmProperties{
    				AddonType:  "SRM",
    				LicenseKey: "41915178-A8FF-4A4D-B683-6D735AF5E3F5",
    			},
    			ResourceGroupName: pulumi.String("group1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.avs.Addon;
    import com.pulumi.azurenative.avs.AddonArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var addon = new Addon("addon", AddonArgs.builder()        
                .addonName("srm")
                .privateCloudName("cloud1")
                .properties(AddonArcPropertiesArgs.builder()
                    .addonType("SRM")
                    .licenseKey("41915178-A8FF-4A4D-B683-6D735AF5E3F5")
                    .build())
                .resourceGroupName("group1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    addon = azure_native.avs.Addon("addon",
        addon_name="srm",
        private_cloud_name="cloud1",
        properties=azure_native.avs.AddonSrmPropertiesArgs(
            addon_type="SRM",
            license_key="41915178-A8FF-4A4D-B683-6D735AF5E3F5",
        ),
        resource_group_name="group1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const addon = new azure_native.avs.Addon("addon", {
        addonName: "srm",
        privateCloudName: "cloud1",
        properties: {
            addonType: "SRM",
            licenseKey: "41915178-A8FF-4A4D-B683-6D735AF5E3F5",
        },
        resourceGroupName: "group1",
    });
    
    resources:
      addon:
        type: azure-native:avs:Addon
        properties:
          addonName: srm
          privateCloudName: cloud1
          properties:
            addonType: SRM
            licenseKey: 41915178-A8FF-4A4D-B683-6D735AF5E3F5
          resourceGroupName: group1
    

    Addons_CreateOrUpdate_VR

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var addon = new AzureNative.AVS.Addon("addon", new()
        {
            AddonName = "vr",
            PrivateCloudName = "cloud1",
            Properties = new AzureNative.AVS.Inputs.AddonVrPropertiesArgs
            {
                AddonType = "VR",
                VrsCount = 1,
            },
            ResourceGroupName = "group1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avs.NewAddon(ctx, "addon", &avs.AddonArgs{
    			AddonName:        pulumi.String("vr"),
    			PrivateCloudName: pulumi.String("cloud1"),
    			Properties: avs.AddonVrProperties{
    				AddonType: "VR",
    				VrsCount:  1,
    			},
    			ResourceGroupName: pulumi.String("group1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.avs.Addon;
    import com.pulumi.azurenative.avs.AddonArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var addon = new Addon("addon", AddonArgs.builder()        
                .addonName("vr")
                .privateCloudName("cloud1")
                .properties(AddonArcPropertiesArgs.builder()
                    .addonType("VR")
                    .vrsCount(1)
                    .build())
                .resourceGroupName("group1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    addon = azure_native.avs.Addon("addon",
        addon_name="vr",
        private_cloud_name="cloud1",
        properties=azure_native.avs.AddonVrPropertiesArgs(
            addon_type="VR",
            vrs_count=1,
        ),
        resource_group_name="group1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const addon = new azure_native.avs.Addon("addon", {
        addonName: "vr",
        privateCloudName: "cloud1",
        properties: {
            addonType: "VR",
            vrsCount: 1,
        },
        resourceGroupName: "group1",
    });
    
    resources:
      addon:
        type: azure-native:avs:Addon
        properties:
          addonName: vr
          privateCloudName: cloud1
          properties:
            addonType: VR
            vrsCount: 1
          resourceGroupName: group1
    

    Create Addon Resource

    new Addon(name: string, args: AddonArgs, opts?: CustomResourceOptions);
    @overload
    def Addon(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              addon_name: Optional[str] = None,
              private_cloud_name: Optional[str] = None,
              properties: Optional[Union[AddonArcPropertiesArgs, AddonHcxPropertiesArgs, AddonSrmPropertiesArgs, AddonVrPropertiesArgs]] = None,
              resource_group_name: Optional[str] = None)
    @overload
    def Addon(resource_name: str,
              args: AddonArgs,
              opts: Optional[ResourceOptions] = None)
    func NewAddon(ctx *Context, name string, args AddonArgs, opts ...ResourceOption) (*Addon, error)
    public Addon(string name, AddonArgs args, CustomResourceOptions? opts = null)
    public Addon(String name, AddonArgs args)
    public Addon(String name, AddonArgs args, CustomResourceOptions options)
    
    type: azure-native:avs:Addon
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AddonArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AddonArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AddonArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AddonArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AddonArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Addon Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Addon resource accepts the following input properties:

    PrivateCloudName string
    The name of the private cloud.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AddonName string
    Name of the addon for the private cloud
    Properties Pulumi.AzureNative.AVS.Inputs.AddonArcProperties | Pulumi.AzureNative.AVS.Inputs.AddonHcxProperties | Pulumi.AzureNative.AVS.Inputs.AddonSrmProperties | Pulumi.AzureNative.AVS.Inputs.AddonVrProperties
    The properties of an addon resource
    PrivateCloudName string
    The name of the private cloud.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AddonName string
    Name of the addon for the private cloud
    Properties AddonArcPropertiesArgs | AddonHcxPropertiesArgs | AddonSrmPropertiesArgs | AddonVrPropertiesArgs
    The properties of an addon resource
    privateCloudName String
    The name of the private cloud.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    addonName String
    Name of the addon for the private cloud
    properties AddonArcProperties | AddonHcxProperties | AddonSrmProperties | AddonVrProperties
    The properties of an addon resource
    privateCloudName string
    The name of the private cloud.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    addonName string
    Name of the addon for the private cloud
    properties AddonArcProperties | AddonHcxProperties | AddonSrmProperties | AddonVrProperties
    The properties of an addon resource
    private_cloud_name str
    The name of the private cloud.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    addon_name str
    Name of the addon for the private cloud
    properties AddonArcPropertiesArgs | AddonHcxPropertiesArgs | AddonSrmPropertiesArgs | AddonVrPropertiesArgs
    The properties of an addon resource
    privateCloudName String
    The name of the private cloud.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    addonName String
    Name of the addon for the private cloud
    properties Property Map | Property Map | Property Map | Property Map
    The properties of an addon resource

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Addon resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    Type string
    Resource type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    Type string
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    type String
    Resource type.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name.
    type string
    Resource type.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name.
    type str
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    type String
    Resource type.

    Supporting Types

    AddonArcProperties, AddonArcPropertiesArgs

    VCenter string
    The VMware vCenter resource ID
    VCenter string
    The VMware vCenter resource ID
    vCenter String
    The VMware vCenter resource ID
    vCenter string
    The VMware vCenter resource ID
    v_center str
    The VMware vCenter resource ID
    vCenter String
    The VMware vCenter resource ID

    AddonArcPropertiesResponse, AddonArcPropertiesResponseArgs

    ProvisioningState string
    The state of the addon provisioning
    VCenter string
    The VMware vCenter resource ID
    ProvisioningState string
    The state of the addon provisioning
    VCenter string
    The VMware vCenter resource ID
    provisioningState String
    The state of the addon provisioning
    vCenter String
    The VMware vCenter resource ID
    provisioningState string
    The state of the addon provisioning
    vCenter string
    The VMware vCenter resource ID
    provisioning_state str
    The state of the addon provisioning
    v_center str
    The VMware vCenter resource ID
    provisioningState String
    The state of the addon provisioning
    vCenter String
    The VMware vCenter resource ID

    AddonHcxProperties, AddonHcxPropertiesArgs

    Offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    Offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    offer String
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    offer str
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    offer String
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)

    AddonHcxPropertiesResponse, AddonHcxPropertiesResponseArgs

    Offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    ProvisioningState string
    The state of the addon provisioning
    Offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    ProvisioningState string
    The state of the addon provisioning
    offer String
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    provisioningState String
    The state of the addon provisioning
    offer string
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    provisioningState string
    The state of the addon provisioning
    offer str
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    provisioning_state str
    The state of the addon provisioning
    offer String
    The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
    provisioningState String
    The state of the addon provisioning

    AddonSrmProperties, AddonSrmPropertiesArgs

    LicenseKey string
    The Site Recovery Manager (SRM) license
    LicenseKey string
    The Site Recovery Manager (SRM) license
    licenseKey String
    The Site Recovery Manager (SRM) license
    licenseKey string
    The Site Recovery Manager (SRM) license
    license_key str
    The Site Recovery Manager (SRM) license
    licenseKey String
    The Site Recovery Manager (SRM) license

    AddonSrmPropertiesResponse, AddonSrmPropertiesResponseArgs

    ProvisioningState string
    The state of the addon provisioning
    LicenseKey string
    The Site Recovery Manager (SRM) license
    ProvisioningState string
    The state of the addon provisioning
    LicenseKey string
    The Site Recovery Manager (SRM) license
    provisioningState String
    The state of the addon provisioning
    licenseKey String
    The Site Recovery Manager (SRM) license
    provisioningState string
    The state of the addon provisioning
    licenseKey string
    The Site Recovery Manager (SRM) license
    provisioning_state str
    The state of the addon provisioning
    license_key str
    The Site Recovery Manager (SRM) license
    provisioningState String
    The state of the addon provisioning
    licenseKey String
    The Site Recovery Manager (SRM) license

    AddonVrProperties, AddonVrPropertiesArgs

    VrsCount int
    The vSphere Replication Server (VRS) count
    VrsCount int
    The vSphere Replication Server (VRS) count
    vrsCount Integer
    The vSphere Replication Server (VRS) count
    vrsCount number
    The vSphere Replication Server (VRS) count
    vrs_count int
    The vSphere Replication Server (VRS) count
    vrsCount Number
    The vSphere Replication Server (VRS) count

    AddonVrPropertiesResponse, AddonVrPropertiesResponseArgs

    ProvisioningState string
    The state of the addon provisioning
    VrsCount int
    The vSphere Replication Server (VRS) count
    ProvisioningState string
    The state of the addon provisioning
    VrsCount int
    The vSphere Replication Server (VRS) count
    provisioningState String
    The state of the addon provisioning
    vrsCount Integer
    The vSphere Replication Server (VRS) count
    provisioningState string
    The state of the addon provisioning
    vrsCount number
    The vSphere Replication Server (VRS) count
    provisioning_state str
    The state of the addon provisioning
    vrs_count int
    The vSphere Replication Server (VRS) count
    provisioningState String
    The state of the addon provisioning
    vrsCount Number
    The vSphere Replication Server (VRS) count

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:avs:Addon vr /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/addons/{addonName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi