Addon

Deprecated

Please use one of the variants: ArcAddon, IoTAddon.

Role Addon API Version: 2020-12-01.

Example Usage

PutAddOns

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var addon = new AzureNative.DataBoxEdge.Addon("addon", new()
{
AddonName = "arcName",
DeviceName = "testedgedevice",
Kind = "ArcForKubernetes",
ResourceGroupName = "GroupForEdgeAutomation",
RoleName = "KubernetesRole",
});
});
package main
import (
databoxedge "github.com/pulumi/pulumi-azure-native/sdk/go/azure/databoxedge"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databoxedge.NewAddon(ctx, "addon", &databoxedge.AddonArgs{
AddonName: pulumi.String("arcName"),
DeviceName: pulumi.String("testedgedevice"),
Kind: pulumi.String("ArcForKubernetes"),
ResourceGroupName: pulumi.String("GroupForEdgeAutomation"),
RoleName: pulumi.String("KubernetesRole"),
})
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.databoxedge.Addon;
import com.pulumi.azurenative.databoxedge.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("arcName")
.deviceName("testedgedevice")
.kind("ArcForKubernetes")
.resourceGroupName("GroupForEdgeAutomation")
.roleName("KubernetesRole")
.build());
}
}

Import

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

$ pulumi import azure-native:databoxedge:Addon arcName /subscriptions/4385cf00-2d3a-425a-832f-f4285b1c9dce/resourcegroups/GroupForEdgeAutomation/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/addonExamples/roles/kubernetesRole/addons/arcName

Properties

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

Addon type.

Link copied to clipboard
val name: Output<String>

The object name.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Addon type

Link copied to clipboard
val type: Output<String>

The hierarchical type of the object.

Link copied to clipboard
val urn: Output<String>