1. Packages
  2. Azure Native
  3. API Docs
  4. delegatednetwork
  5. ControllerDetails
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.delegatednetwork.ControllerDetails

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    Represents an instance of a DNC controller. Azure REST API version: 2021-03-15. Prior API version in Azure Native 1.x: 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 (
    	"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 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

    new ControllerDetails(name: string, args: ControllerDetailsArgs, opts?: CustomResourceOptions);
    @overload
    def ControllerDetails(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          location: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          resource_name_: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    @overload
    def ControllerDetails(resource_name: str,
                          args: ControllerDetailsInitArgs,
                          opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DelegatedNetwork/controller/{resourceName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi