SupportPlanType

The status of the Canonical support plan. API Version: 2018-03-01.

Example Usage

SupportPlanTypes_CreateOrUpdate

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var supportPlanType = new AzureNative.Addons.SupportPlanType("supportPlanType", new()
{
PlanTypeName = "Standard",
ProviderName = "Canonical",
});
});
package main
import (
addons "github.com/pulumi/pulumi-azure-native/sdk/go/azure/addons"
"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
})
}
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());
}
}

Import

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

$ pulumi import azure-native:addons:SupportPlanType Standard subscriptions/d18d258f-bdba-4de1-8b51-e79d6c181d5e/providers/Microsoft.Addons/supportProviders/canonical/supportPlanTypes/Standard

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the Canonical support plan, i.e. "essential", "standard" or "advanced".

Link copied to clipboard

The provisioning state of the resource.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val type: Output<String>

Microsoft.Addons/supportProvider

Link copied to clipboard
val urn: Output<String>