1. Packages
  2. Azure Native v1
  3. API Docs
  4. delegatednetwork
  5. ControllerDetails
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.delegatednetwork.ControllerDetails

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Represents an instance of a DNC controller. API Version: 2021-03-15.

    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"
    	"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 pulumi
    import pulumi_azure_native as azure_native
    
    controller_details = azure_native.delegatednetwork.ControllerDetails("controllerDetails",
        location="West US",
        resource_group_name="TestRG",
        resource_name_="testcontroller")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const controllerDetails = new azure_native.delegatednetwork.ControllerDetails("controllerDetails", {
        location: "West US",
        resourceGroupName: "TestRG",
        resourceName: "testcontroller",
    });
    
    resources:
      controllerDetails:
        type: azure-native:delegatednetwork:ControllerDetails
        properties:
          location: West US
          resourceGroupName: TestRG
          resourceName: testcontroller
    

    Create ControllerDetails Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ControllerDetails(name: string, args: ControllerDetailsArgs, opts?: CustomResourceOptions);
    @overload
    def ControllerDetails(resource_name: str,
                          args: ControllerDetailsInitArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ControllerDetails(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          location: Optional[str] = None,
                          resource_name_: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewControllerDetails(ctx *Context, name string, args ControllerDetailsArgs, opts ...ResourceOption) (*ControllerDetails, error)
    public ControllerDetails(string name, ControllerDetailsArgs args, CustomResourceOptions? opts = null)
    public ControllerDetails(String name, ControllerDetailsArgs args)
    public ControllerDetails(String name, ControllerDetailsArgs args, CustomResourceOptions options)
    
    type: azure-native:delegatednetwork:ControllerDetails
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ControllerDetailsArgs
    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 ControllerDetailsInitArgs
    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 ControllerDetailsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ControllerDetailsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ControllerDetailsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var controllerDetailsResource = new AzureNative.Delegatednetwork.ControllerDetails("controllerDetailsResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        ResourceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := delegatednetwork.NewControllerDetails(ctx, "controllerDetailsResource", &delegatednetwork.ControllerDetailsArgs{
    	ResourceGroupName: "string",
    	Location:          "string",
    	ResourceName:      "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var controllerDetailsResource = new ControllerDetails("controllerDetailsResource", ControllerDetailsArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .resourceName("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    controller_details_resource = azure_native.delegatednetwork.ControllerDetails("controllerDetailsResource",
        resource_group_name=string,
        location=string,
        resource_name_=string,
        tags={
            string: string,
        })
    
    const controllerDetailsResource = new azure_native.delegatednetwork.ControllerDetails("controllerDetailsResource", {
        resourceGroupName: "string",
        location: "string",
        resourceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:delegatednetwork:ControllerDetails
    properties:
        location: string
        resourceGroupName: string
        resourceName: string
        tags:
            string: string
    

    ControllerDetails 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 ControllerDetails resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    Location of the resource.
    ResourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    Tags Dictionary<string, string>
    The resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    Location of the resource.
    ResourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    Tags map[string]string
    The resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    Location of the resource.
    resourceName String
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Map<String,String>
    The resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    Location of the resource.
    resourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags {[key: string]: string}
    The resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    Location of the resource.
    resource_name str
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Mapping[str, str]
    The resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    Location of the resource.
    resourceName String
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Map<String>
    The resource tags.

    Outputs

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

    DncAppId string
    dnc application id should be used by customer to authenticate with dnc gateway.
    DncEndpoint string
    dnc endpoint url that customers can use to connect to
    DncTenantId string
    tenant id of dnc application id
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    ProvisioningState string
    The current state of dnc controller resource.
    ResourceGuid string
    Resource guid.
    Type string
    The type of resource.
    DncAppId string
    dnc application id should be used by customer to authenticate with dnc gateway.
    DncEndpoint string
    dnc endpoint url that customers can use to connect to
    DncTenantId string
    tenant id of dnc application id
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    ProvisioningState string
    The current state of dnc controller resource.
    ResourceGuid string
    Resource guid.
    Type string
    The type of resource.
    dncAppId String
    dnc application id should be used by customer to authenticate with dnc gateway.
    dncEndpoint String
    dnc endpoint url that customers can use to connect to
    dncTenantId String
    tenant id of dnc application id
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The current state of dnc controller resource.
    resourceGuid String
    Resource guid.
    type String
    The type of resource.
    dncAppId string
    dnc application id should be used by customer to authenticate with dnc gateway.
    dncEndpoint string
    dnc endpoint url that customers can use to connect to
    dncTenantId string
    tenant id of dnc application id
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    provisioningState string
    The current state of dnc controller resource.
    resourceGuid string
    Resource guid.
    type string
    The type of resource.
    dnc_app_id str
    dnc application id should be used by customer to authenticate with dnc gateway.
    dnc_endpoint str
    dnc endpoint url that customers can use to connect to
    dnc_tenant_id str
    tenant id of dnc application id
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    provisioning_state str
    The current state of dnc controller resource.
    resource_guid str
    Resource guid.
    type str
    The type of resource.
    dncAppId String
    dnc application id should be used by customer to authenticate with dnc gateway.
    dncEndpoint String
    dnc endpoint url that customers can use to connect to
    dncTenantId String
    tenant id of dnc application id
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The current state of dnc controller resource.
    resourceGuid String
    Resource guid.
    type String
    The type of resource.

    Import

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

    $ pulumi import azure-native:delegatednetwork:ControllerDetails testcontroller /subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi