ControllerDetails

class ControllerDetails : KotlinCustomResource

Represents an instance of a DNC controller. Uses Azure REST API version 2021-03-15. In version 1.x of the Azure Native provider, it used API version 2021-03-15. Other available API versions: 2023-05-18-preview, 2023-06-27-preview.

Example Usage

Create controller

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var controllerDetails = new AzureNative.DelegatedNetwork.ControllerDetails("controllerDetails", new()
{
Location = "West US",
ResourceGroupName = "TestRG",
ResourceName = "testcontroller",
});
});
package main
import (
delegatednetwork "github.com/pulumi/pulumi-azure-native-sdk/delegatednetwork/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := delegatednetwork.NewControllerDetails(ctx, "controllerDetails", &delegatednetwork.ControllerDetailsArgs{
Location: pulumi.String("West US"),
ResourceGroupName: pulumi.String("TestRG"),
ResourceName: pulumi.String("testcontroller"),
})
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.delegatednetwork.ControllerDetails;
import com.pulumi.azurenative.delegatednetwork.ControllerDetailsArgs;
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 controllerDetails = new ControllerDetails("controllerDetails", ControllerDetailsArgs.builder()
.location("West US")
.resourceGroupName("TestRG")
.resourceName("testcontroller")
.build());
}
}

Import

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

$ pulumi import azure-native:delegatednetwork:ControllerDetails testcontroller /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DelegatedNetwork/controller/{resourceName}

Properties

Link copied to clipboard
val dncAppId: Output<String>

dnc application id should be used by customer to authenticate with dnc gateway.

Link copied to clipboard
val dncEndpoint: Output<String>

dnc endpoint url that customers can use to connect to

Link copied to clipboard
val dncTenantId: Output<String>

tenant id of dnc application id

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>?

Location of the resource.

Link copied to clipboard
val name: Output<String>

The name of the resource.

Link copied to clipboard

The current state of dnc controller resource.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resourceGuid: Output<String>

Resource guid.

Link copied to clipboard
val tags: Output<Map<String, String>>?

The resource tags.

Link copied to clipboard
val type: Output<String>

The type of resource.

Link copied to clipboard
val urn: Output<String>