1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. mission
  6. DedicatedHub
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    DedicatedHub Model Resource

    Uses Azure REST API version 2025-11-01-preview.

    Other available API versions: 2026-03-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mission [ApiVersion]. See the version guide for details.

    Example Usage

    DedicatedHub_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dedicatedHub = new AzureNative.Mission.DedicatedHub("dedicatedHub", new()
        {
            CommunityName = "TestCommunity",
            DedicatedHubName = "TestDedicatedHub",
            Designation = AzureNative.Mission.Designation.Reserved,
            Location = "eastus",
            ResourceGroupName = "TestResourceGroup",
            Tags = 
            {
                { "environment", "test" },
                { "project", "mission" },
            },
        });
    
    });
    
    package main
    
    import (
    	mission "github.com/pulumi/pulumi-azure-native-sdk/mission/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mission.NewDedicatedHub(ctx, "dedicatedHub", &mission.DedicatedHubArgs{
    			CommunityName:     pulumi.String("TestCommunity"),
    			DedicatedHubName:  pulumi.String("TestDedicatedHub"),
    			Designation:       pulumi.String(mission.DesignationReserved),
    			Location:          pulumi.String("eastus"),
    			ResourceGroupName: pulumi.String("TestResourceGroup"),
    			Tags: pulumi.StringMap{
    				"environment": pulumi.String("test"),
    				"project":     pulumi.String("mission"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_mission_dedicatedhub" "dedicatedHub" {
      community_name      = "TestCommunity"
      dedicated_hub_name  = "TestDedicatedHub"
      designation         = "Reserved"
      location            = "eastus"
      resource_group_name = "TestResourceGroup"
      tags = {
        "environment" = "test"
        "project"     = "mission"
      }
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.mission.DedicatedHub;
    import com.pulumi.azurenative.mission.DedicatedHubArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 dedicatedHub = new DedicatedHub("dedicatedHub", DedicatedHubArgs.builder()
                .communityName("TestCommunity")
                .dedicatedHubName("TestDedicatedHub")
                .designation("Reserved")
                .location("eastus")
                .resourceGroupName("TestResourceGroup")
                .tags(Map.ofEntries(
                    Map.entry("environment", "test"),
                    Map.entry("project", "mission")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dedicatedHub = new azure_native.mission.DedicatedHub("dedicatedHub", {
        communityName: "TestCommunity",
        dedicatedHubName: "TestDedicatedHub",
        designation: azure_native.mission.Designation.Reserved,
        location: "eastus",
        resourceGroupName: "TestResourceGroup",
        tags: {
            environment: "test",
            project: "mission",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dedicated_hub = azure_native.mission.DedicatedHub("dedicatedHub",
        community_name="TestCommunity",
        dedicated_hub_name="TestDedicatedHub",
        designation=azure_native.mission.Designation.RESERVED,
        location="eastus",
        resource_group_name="TestResourceGroup",
        tags={
            "environment": "test",
            "project": "mission",
        })
    
    resources:
      dedicatedHub:
        type: azure-native:mission:DedicatedHub
        properties:
          communityName: TestCommunity
          dedicatedHubName: TestDedicatedHub
          designation: Reserved
          location: eastus
          resourceGroupName: TestResourceGroup
          tags:
            environment: test
            project: mission
    

    Create DedicatedHub Resource

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

    Constructor syntax

    new DedicatedHub(name: string, args: DedicatedHubArgs, opts?: CustomResourceOptions);
    @overload
    def DedicatedHub(resource_name: str,
                     args: DedicatedHubArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DedicatedHub(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     community_name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     dedicated_hub_name: Optional[str] = None,
                     designation: Optional[Union[str, Designation]] = None,
                     location: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewDedicatedHub(ctx *Context, name string, args DedicatedHubArgs, opts ...ResourceOption) (*DedicatedHub, error)
    public DedicatedHub(string name, DedicatedHubArgs args, CustomResourceOptions? opts = null)
    public DedicatedHub(String name, DedicatedHubArgs args)
    public DedicatedHub(String name, DedicatedHubArgs args, CustomResourceOptions options)
    
    type: azure-native:mission:DedicatedHub
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_mission_dedicated_hub" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args DedicatedHubArgs
    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 DedicatedHubArgs
    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 DedicatedHubArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DedicatedHubArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DedicatedHubArgs
    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 dedicatedHubResource = new AzureNative.Mission.DedicatedHub("dedicatedHubResource", new()
    {
        CommunityName = "string",
        ResourceGroupName = "string",
        DedicatedHubName = "string",
        Designation = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := mission.NewDedicatedHub(ctx, "dedicatedHubResource", &mission.DedicatedHubArgs{
    	CommunityName:     pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	DedicatedHubName:  pulumi.String("string"),
    	Designation:       pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_mission_dedicated_hub" "dedicatedHubResource" {
      lifecycle {
        create_before_destroy = true
      }
      community_name      = "string"
      resource_group_name = "string"
      dedicated_hub_name  = "string"
      designation         = "string"
      location            = "string"
      tags = {
        "string" = "string"
      }
    }
    
    var dedicatedHubResource = new DedicatedHub("dedicatedHubResource", DedicatedHubArgs.builder()
        .communityName("string")
        .resourceGroupName("string")
        .dedicatedHubName("string")
        .designation("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    dedicated_hub_resource = azure_native.mission.DedicatedHub("dedicatedHubResource",
        community_name="string",
        resource_group_name="string",
        dedicated_hub_name="string",
        designation="string",
        location="string",
        tags={
            "string": "string",
        })
    
    const dedicatedHubResource = new azure_native.mission.DedicatedHub("dedicatedHubResource", {
        communityName: "string",
        resourceGroupName: "string",
        dedicatedHubName: "string",
        designation: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:mission:DedicatedHub
    properties:
        communityName: string
        dedicatedHubName: string
        designation: string
        location: string
        resourceGroupName: string
        tags:
            string: string
    

    DedicatedHub Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DedicatedHub resource accepts the following input properties:

    CommunityName string
    The name of the communityResource Resource
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DedicatedHubName string
    The name of the Dedicated Hub Resource
    Designation string | Pulumi.AzureNative.Mission.Designation
    Designation of hub resource allocation (Pooled or Reserved)
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    CommunityName string
    The name of the communityResource Resource
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DedicatedHubName string
    The name of the Dedicated Hub Resource
    Designation string | Designation
    Designation of hub resource allocation (Pooled or Reserved)
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    community_name string
    The name of the communityResource Resource
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    dedicated_hub_name string
    The name of the Dedicated Hub Resource
    designation string | "Pooled" | "Reserved"
    Designation of hub resource allocation (Pooled or Reserved)
    location string
    The geo-location where the resource lives
    tags map(string)
    Resource tags.
    communityName String
    The name of the communityResource Resource
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dedicatedHubName String
    The name of the Dedicated Hub Resource
    designation String | Designation
    Designation of hub resource allocation (Pooled or Reserved)
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    communityName string
    The name of the communityResource Resource
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    dedicatedHubName string
    The name of the Dedicated Hub Resource
    designation string | Designation
    Designation of hub resource allocation (Pooled or Reserved)
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    community_name str
    The name of the communityResource Resource
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    dedicated_hub_name str
    The name of the Dedicated Hub Resource
    designation str | Designation
    Designation of hub resource allocation (Pooled or Reserved)
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    communityName String
    The name of the communityResource Resource
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dedicatedHubName String
    The name of the Dedicated Hub Resource
    designation String | "Pooled" | "Reserved"
    Designation of hub resource allocation (Pooled or Reserved)
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    FirewallPolicyResourceId string
    Firewall Policy Resource ID
    FirewallResourceId string
    Firewall Resource ID
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.Mission.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VHubResourceId string
    Virtual Hub Resource ID
    AzureApiVersion string
    The Azure API version of the resource.
    FirewallPolicyResourceId string
    Firewall Policy Resource ID
    FirewallResourceId string
    Firewall Resource ID
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VHubResourceId string
    Virtual Hub Resource ID
    azure_api_version string
    The Azure API version of the resource.
    firewall_policy_resource_id string
    Firewall Policy Resource ID
    firewall_resource_id string
    Firewall Resource ID
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioning_state string
    The status of the last operation.
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    v_hub_resource_id string
    Virtual Hub Resource ID
    azureApiVersion String
    The Azure API version of the resource.
    firewallPolicyResourceId String
    Firewall Policy Resource ID
    firewallResourceId String
    Firewall Resource ID
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    vHubResourceId String
    Virtual Hub Resource ID
    azureApiVersion string
    The Azure API version of the resource.
    firewallPolicyResourceId string
    Firewall Policy Resource ID
    firewallResourceId string
    Firewall Resource ID
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    vHubResourceId string
    Virtual Hub Resource ID
    azure_api_version str
    The Azure API version of the resource.
    firewall_policy_resource_id str
    Firewall Policy Resource ID
    firewall_resource_id str
    Firewall Resource ID
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    v_hub_resource_id str
    Virtual Hub Resource ID
    azureApiVersion String
    The Azure API version of the resource.
    firewallPolicyResourceId String
    Firewall Policy Resource ID
    firewallResourceId String
    Firewall Resource ID
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    vHubResourceId String
    Virtual Hub Resource ID

    Supporting Types

    Designation, DesignationArgs

    Pooled
    Pooled Designation Type Pooled
    Reserved
    Reserved Designation Type Reserved
    DesignationPooled
    Pooled Designation Type Pooled
    DesignationReserved
    Reserved Designation Type Reserved
    "Pooled"
    Pooled Designation Type Pooled
    "Reserved"
    Reserved Designation Type Reserved
    Pooled
    Pooled Designation Type Pooled
    Reserved
    Reserved Designation Type Reserved
    Pooled
    Pooled Designation Type Pooled
    Reserved
    Reserved Designation Type Reserved
    POOLED
    Pooled Designation Type Pooled
    RESERVED
    Reserved Designation Type Reserved
    "Pooled"
    Pooled Designation Type Pooled
    "Reserved"
    Reserved Designation Type Reserved

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:mission:DedicatedHub TestDedicatedHub /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Mission/communities/{communityName}/dedicatedHubs/{dedicatedHubName} 
    

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

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial