Support Plan Type
    The status of the Canonical support plan. Azure REST API version: 2018-03-01. Prior API version in Azure Native 1.x: 2018-03-01.
Example Usage
SupportPlanTypes_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var supportPlanType = new AzureNative.Addons.SupportPlanType("supportPlanType", new()
    {
        PlanTypeName = "Standard",
        ProviderName = "Canonical",
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/addons/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := addons.NewSupportPlanType(ctx, "supportPlanType", &addons.SupportPlanTypeArgs{
			PlanTypeName: pulumi.String("Standard"),
			ProviderName: pulumi.String("Canonical"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.addons.SupportPlanType;
import com.pulumi.azurenative.addons.SupportPlanTypeArgs;
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 supportPlanType = new SupportPlanType("supportPlanType", SupportPlanTypeArgs.builder()
            .planTypeName("Standard")
            .providerName("Canonical")
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:addons:SupportPlanType Standard /subscriptions/{subscriptionId}/providers/Microsoft.Addons/supportProviders/{providerName}/supportPlanTypes/{planTypeName}Content copied to clipboard