published on Saturday, Jul 18, 2026 by Pulumi
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:
- Community
Name string - The name of the communityResource Resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Dedicated
Hub stringName - The name of the Dedicated Hub Resource
- Designation
string | Pulumi.
Azure Native. Mission. Designation - Designation of hub resource allocation (Pooled or Reserved)
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Community
Name string - The name of the communityResource Resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Dedicated
Hub stringName - 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
- map[string]string
- Resource tags.
- community_
name string - The name of the communityResource Resource
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- dedicated_
hub_ stringname - 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
- map(string)
- Resource tags.
- community
Name String - The name of the communityResource Resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- dedicated
Hub StringName - 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
- Map<String,String>
- Resource tags.
- community
Name string - The name of the communityResource Resource
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- dedicated
Hub stringName - 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
- {[key: string]: string}
- Resource tags.
- community_
name str - The name of the communityResource Resource
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- dedicated_
hub_ strname - 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
- Mapping[str, str]
- Resource tags.
- community
Name String - The name of the communityResource Resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- dedicated
Hub StringName - 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
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DedicatedHub resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Firewall
Policy stringResource Id - Firewall Policy Resource ID
- Firewall
Resource stringId - 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 Pulumi.Azure Native. Mission. Outputs. System Data Response - 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"
- VHub
Resource stringId - Virtual Hub Resource ID
- Azure
Api stringVersion - The Azure API version of the resource.
- Firewall
Policy stringResource Id - Firewall Policy Resource ID
- Firewall
Resource stringId - 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 SystemData Response - 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"
- VHub
Resource stringId - Virtual Hub Resource ID
- azure_
api_ stringversion - The Azure API version of the resource.
- firewall_
policy_ stringresource_ id - Firewall Policy Resource ID
- firewall_
resource_ stringid - 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_ stringresource_ id - Virtual Hub Resource ID
- azure
Api StringVersion - The Azure API version of the resource.
- firewall
Policy StringResource Id - Firewall Policy Resource ID
- firewall
Resource StringId - 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 SystemData Response - 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 StringResource Id - Virtual Hub Resource ID
- azure
Api stringVersion - The Azure API version of the resource.
- firewall
Policy stringResource Id - Firewall Policy Resource ID
- firewall
Resource stringId - 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 SystemData Response - 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 stringResource Id - Virtual Hub Resource ID
- azure_
api_ strversion - The Azure API version of the resource.
- firewall_
policy_ strresource_ id - Firewall Policy Resource ID
- firewall_
resource_ strid - 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 SystemData Response - 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_ strresource_ id - Virtual Hub Resource ID
- azure
Api StringVersion - The Azure API version of the resource.
- firewall
Policy StringResource Id - Firewall Policy Resource ID
- firewall
Resource StringId - 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 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"
- v
Hub StringResource Id - Virtual Hub Resource ID
Supporting Types
Designation, DesignationArgs
- Pooled
PooledDesignation Type Pooled- Reserved
ReservedDesignation Type Reserved
- Designation
Pooled PooledDesignation Type Pooled- Designation
Reserved ReservedDesignation Type Reserved
- "Pooled"
PooledDesignation Type Pooled- "Reserved"
ReservedDesignation Type Reserved
- Pooled
PooledDesignation Type Pooled- Reserved
ReservedDesignation Type Reserved
- Pooled
PooledDesignation Type Pooled- Reserved
ReservedDesignation Type Reserved
- POOLED
PooledDesignation Type Pooled- RESERVED
ReservedDesignation Type Reserved
- "Pooled"
PooledDesignation Type Pooled- "Reserved"
ReservedDesignation Type Reserved
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
published on Saturday, Jul 18, 2026 by Pulumi