1. Packages
  2. Azure Native
  3. API Docs
  4. iotcentral
  5. App
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.iotcentral.App

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

The IoT Central application.

Uses Azure REST API version 2021-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-06-01.

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

Example Usage

Apps_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var app = new AzureNative.IoTCentral.App("app", new()
    {
        DisplayName = "My IoT Central App",
        Identity = new AzureNative.IoTCentral.Inputs.SystemAssignedServiceIdentityArgs
        {
            Type = AzureNative.IoTCentral.SystemAssignedServiceIdentityType.SystemAssigned,
        },
        Location = "westus",
        ResourceGroupName = "resRg",
        ResourceName = "myIoTCentralApp",
        Sku = new AzureNative.IoTCentral.Inputs.AppSkuInfoArgs
        {
            Name = AzureNative.IoTCentral.AppSku.ST2,
        },
        Subdomain = "my-iot-central-app",
        Template = "iotc-pnp-preview@1.0.0",
    });

});
Copy
package main

import (
	iotcentral "github.com/pulumi/pulumi-azure-native-sdk/iotcentral/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iotcentral.NewApp(ctx, "app", &iotcentral.AppArgs{
			DisplayName: pulumi.String("My IoT Central App"),
			Identity: &iotcentral.SystemAssignedServiceIdentityArgs{
				Type: pulumi.String(iotcentral.SystemAssignedServiceIdentityTypeSystemAssigned),
			},
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("resRg"),
			ResourceName:      pulumi.String("myIoTCentralApp"),
			Sku: &iotcentral.AppSkuInfoArgs{
				Name: pulumi.String(iotcentral.AppSkuST2),
			},
			Subdomain: pulumi.String("my-iot-central-app"),
			Template:  pulumi.String("iotc-pnp-preview@1.0.0"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.iotcentral.App;
import com.pulumi.azurenative.iotcentral.AppArgs;
import com.pulumi.azurenative.iotcentral.inputs.SystemAssignedServiceIdentityArgs;
import com.pulumi.azurenative.iotcentral.inputs.AppSkuInfoArgs;
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 app = new App("app", AppArgs.builder()
            .displayName("My IoT Central App")
            .identity(SystemAssignedServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("westus")
            .resourceGroupName("resRg")
            .resourceName("myIoTCentralApp")
            .sku(AppSkuInfoArgs.builder()
                .name("ST2")
                .build())
            .subdomain("my-iot-central-app")
            .template("iotc-pnp-preview@1.0.0")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const app = new azure_native.iotcentral.App("app", {
    displayName: "My IoT Central App",
    identity: {
        type: azure_native.iotcentral.SystemAssignedServiceIdentityType.SystemAssigned,
    },
    location: "westus",
    resourceGroupName: "resRg",
    resourceName: "myIoTCentralApp",
    sku: {
        name: azure_native.iotcentral.AppSku.ST2,
    },
    subdomain: "my-iot-central-app",
    template: "iotc-pnp-preview@1.0.0",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

app = azure_native.iotcentral.App("app",
    display_name="My IoT Central App",
    identity={
        "type": azure_native.iotcentral.SystemAssignedServiceIdentityType.SYSTEM_ASSIGNED,
    },
    location="westus",
    resource_group_name="resRg",
    resource_name_="myIoTCentralApp",
    sku={
        "name": azure_native.iotcentral.AppSku.ST2,
    },
    subdomain="my-iot-central-app",
    template="iotc-pnp-preview@1.0.0")
Copy
resources:
  app:
    type: azure-native:iotcentral:App
    properties:
      displayName: My IoT Central App
      identity:
        type: SystemAssigned
      location: westus
      resourceGroupName: resRg
      resourceName: myIoTCentralApp
      sku:
        name: ST2
      subdomain: my-iot-central-app
      template: iotc-pnp-preview@1.0.0
Copy

Create App Resource

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

Constructor syntax

new App(name: string, args: AppArgs, opts?: CustomResourceOptions);
@overload
def App(resource_name: str,
        args: AppArgs,
        opts: Optional[ResourceOptions] = None)

@overload
def App(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        resource_group_name: Optional[str] = None,
        sku: Optional[AppSkuInfoArgs] = None,
        display_name: Optional[str] = None,
        identity: Optional[SystemAssignedServiceIdentityArgs] = None,
        location: Optional[str] = None,
        network_rule_sets: Optional[NetworkRuleSetsArgs] = None,
        public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
        resource_name_: Optional[str] = None,
        subdomain: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        template: Optional[str] = None)
func NewApp(ctx *Context, name string, args AppArgs, opts ...ResourceOption) (*App, error)
public App(string name, AppArgs args, CustomResourceOptions? opts = null)
public App(String name, AppArgs args)
public App(String name, AppArgs args, CustomResourceOptions options)
type: azure-native:iotcentral:App
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AppArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AppArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AppArgs
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 azure_nativeAppResource = new AzureNative.IoTCentral.App("azure-nativeAppResource", new()
{
    ResourceGroupName = "string",
    Sku = new AzureNative.IoTCentral.Inputs.AppSkuInfoArgs
    {
        Name = "string",
    },
    DisplayName = "string",
    Identity = new AzureNative.IoTCentral.Inputs.SystemAssignedServiceIdentityArgs
    {
        Type = "string",
    },
    Location = "string",
    NetworkRuleSets = new AzureNative.IoTCentral.Inputs.NetworkRuleSetsArgs
    {
        ApplyToDevices = false,
        ApplyToIoTCentral = false,
        DefaultAction = "string",
        IpRules = new[]
        {
            new AzureNative.IoTCentral.Inputs.NetworkRuleSetIpRuleArgs
            {
                FilterName = "string",
                IpMask = "string",
            },
        },
    },
    PublicNetworkAccess = "string",
    ResourceName = "string",
    Subdomain = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Template = "string",
});
Copy
example, err := iotcentral.NewApp(ctx, "azure-nativeAppResource", &iotcentral.AppArgs{
	ResourceGroupName: pulumi.String("string"),
	Sku: &iotcentral.AppSkuInfoArgs{
		Name: pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	Identity: &iotcentral.SystemAssignedServiceIdentityArgs{
		Type: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	NetworkRuleSets: &iotcentral.NetworkRuleSetsArgs{
		ApplyToDevices:    pulumi.Bool(false),
		ApplyToIoTCentral: pulumi.Bool(false),
		DefaultAction:     pulumi.String("string"),
		IpRules: iotcentral.NetworkRuleSetIpRuleArray{
			&iotcentral.NetworkRuleSetIpRuleArgs{
				FilterName: pulumi.String("string"),
				IpMask:     pulumi.String("string"),
			},
		},
	},
	PublicNetworkAccess: pulumi.String("string"),
	ResourceName:        pulumi.String("string"),
	Subdomain:           pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Template: pulumi.String("string"),
})
Copy
var azure_nativeAppResource = new com.pulumi.azurenative.iotcentral.App("azure-nativeAppResource", com.pulumi.azurenative.iotcentral.AppArgs.builder()
    .resourceGroupName("string")
    .sku(AppSkuInfoArgs.builder()
        .name("string")
        .build())
    .displayName("string")
    .identity(SystemAssignedServiceIdentityArgs.builder()
        .type("string")
        .build())
    .location("string")
    .networkRuleSets(NetworkRuleSetsArgs.builder()
        .applyToDevices(false)
        .applyToIoTCentral(false)
        .defaultAction("string")
        .ipRules(NetworkRuleSetIpRuleArgs.builder()
            .filterName("string")
            .ipMask("string")
            .build())
        .build())
    .publicNetworkAccess("string")
    .resourceName("string")
    .subdomain("string")
    .tags(Map.of("string", "string"))
    .template("string")
    .build());
Copy
azure_native_app_resource = azure_native.iotcentral.App("azure-nativeAppResource",
    resource_group_name="string",
    sku={
        "name": "string",
    },
    display_name="string",
    identity={
        "type": "string",
    },
    location="string",
    network_rule_sets={
        "apply_to_devices": False,
        "apply_to_io_t_central": False,
        "default_action": "string",
        "ip_rules": [{
            "filter_name": "string",
            "ip_mask": "string",
        }],
    },
    public_network_access="string",
    resource_name_="string",
    subdomain="string",
    tags={
        "string": "string",
    },
    template="string")
Copy
const azure_nativeAppResource = new azure_native.iotcentral.App("azure-nativeAppResource", {
    resourceGroupName: "string",
    sku: {
        name: "string",
    },
    displayName: "string",
    identity: {
        type: "string",
    },
    location: "string",
    networkRuleSets: {
        applyToDevices: false,
        applyToIoTCentral: false,
        defaultAction: "string",
        ipRules: [{
            filterName: "string",
            ipMask: "string",
        }],
    },
    publicNetworkAccess: "string",
    resourceName: "string",
    subdomain: "string",
    tags: {
        string: "string",
    },
    template: "string",
});
Copy
type: azure-native:iotcentral:App
properties:
    displayName: string
    identity:
        type: string
    location: string
    networkRuleSets:
        applyToDevices: false
        applyToIoTCentral: false
        defaultAction: string
        ipRules:
            - filterName: string
              ipMask: string
    publicNetworkAccess: string
    resourceGroupName: string
    resourceName: string
    sku:
        name: string
    subdomain: string
    tags:
        string: string
    template: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the IoT Central application.
Sku This property is required. Pulumi.AzureNative.IoTCentral.Inputs.AppSkuInfo
A valid instance SKU.
DisplayName string
The display name of the application.
Identity Pulumi.AzureNative.IoTCentral.Inputs.SystemAssignedServiceIdentity
The managed identities for the IoT Central application.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
NetworkRuleSets Pulumi.AzureNative.IoTCentral.Inputs.NetworkRuleSets
Network Rule Set Properties of this IoT Central application.
PublicNetworkAccess string | Pulumi.AzureNative.IoTCentral.PublicNetworkAccess
Whether requests from the public network are allowed.
ResourceName Changes to this property will trigger replacement. string
The ARM resource name of the IoT Central application.
Subdomain string
The subdomain of the application.
Tags Dictionary<string, string>
Resource tags.
Template Changes to this property will trigger replacement. string
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the IoT Central application.
Sku This property is required. AppSkuInfoArgs
A valid instance SKU.
DisplayName string
The display name of the application.
Identity SystemAssignedServiceIdentityArgs
The managed identities for the IoT Central application.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
NetworkRuleSets NetworkRuleSetsArgs
Network Rule Set Properties of this IoT Central application.
PublicNetworkAccess string | PublicNetworkAccess
Whether requests from the public network are allowed.
ResourceName Changes to this property will trigger replacement. string
The ARM resource name of the IoT Central application.
Subdomain string
The subdomain of the application.
Tags map[string]string
Resource tags.
Template Changes to this property will trigger replacement. string
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the IoT Central application.
sku This property is required. AppSkuInfo
A valid instance SKU.
displayName String
The display name of the application.
identity SystemAssignedServiceIdentity
The managed identities for the IoT Central application.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
networkRuleSets NetworkRuleSets
Network Rule Set Properties of this IoT Central application.
publicNetworkAccess String | PublicNetworkAccess
Whether requests from the public network are allowed.
resourceName Changes to this property will trigger replacement. String
The ARM resource name of the IoT Central application.
subdomain String
The subdomain of the application.
tags Map<String,String>
Resource tags.
template Changes to this property will trigger replacement. String
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the IoT Central application.
sku This property is required. AppSkuInfo
A valid instance SKU.
displayName string
The display name of the application.
identity SystemAssignedServiceIdentity
The managed identities for the IoT Central application.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
networkRuleSets NetworkRuleSets
Network Rule Set Properties of this IoT Central application.
publicNetworkAccess string | PublicNetworkAccess
Whether requests from the public network are allowed.
resourceName Changes to this property will trigger replacement. string
The ARM resource name of the IoT Central application.
subdomain string
The subdomain of the application.
tags {[key: string]: string}
Resource tags.
template Changes to this property will trigger replacement. string
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the IoT Central application.
sku This property is required. AppSkuInfoArgs
A valid instance SKU.
display_name str
The display name of the application.
identity SystemAssignedServiceIdentityArgs
The managed identities for the IoT Central application.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
network_rule_sets NetworkRuleSetsArgs
Network Rule Set Properties of this IoT Central application.
public_network_access str | PublicNetworkAccess
Whether requests from the public network are allowed.
resource_name Changes to this property will trigger replacement. str
The ARM resource name of the IoT Central application.
subdomain str
The subdomain of the application.
tags Mapping[str, str]
Resource tags.
template Changes to this property will trigger replacement. str
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the IoT Central application.
sku This property is required. Property Map
A valid instance SKU.
displayName String
The display name of the application.
identity Property Map
The managed identities for the IoT Central application.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
networkRuleSets Property Map
Network Rule Set Properties of this IoT Central application.
publicNetworkAccess String | "Enabled" | "Disabled"
Whether requests from the public network are allowed.
resourceName Changes to this property will trigger replacement. String
The ARM resource name of the IoT Central application.
subdomain String
The subdomain of the application.
tags Map<String>
Resource tags.
template Changes to this property will trigger replacement. String
The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.

Outputs

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

ApplicationId string
The ID of the application.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
PrivateEndpointConnections List<Pulumi.AzureNative.IoTCentral.Outputs.PrivateEndpointConnectionResponse>
Private endpoint connections created on this IoT Central application.
ProvisioningState string
The provisioning state of the application.
State string
The current state of the application.
SystemData Pulumi.AzureNative.IoTCentral.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"
ApplicationId string
The ID of the application.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
PrivateEndpointConnections []PrivateEndpointConnectionResponse
Private endpoint connections created on this IoT Central application.
ProvisioningState string
The provisioning state of the application.
State string
The current state of the application.
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"
applicationId String
The ID of the application.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
privateEndpointConnections List<PrivateEndpointConnectionResponse>
Private endpoint connections created on this IoT Central application.
provisioningState String
The provisioning state of the application.
state String
The current state of the application.
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"
applicationId string
The ID of the application.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
privateEndpointConnections PrivateEndpointConnectionResponse[]
Private endpoint connections created on this IoT Central application.
provisioningState string
The provisioning state of the application.
state string
The current state of the application.
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"
application_id str
The ID of the application.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
Private endpoint connections created on this IoT Central application.
provisioning_state str
The provisioning state of the application.
state str
The current state of the application.
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"
applicationId String
The ID of the application.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
privateEndpointConnections List<Property Map>
Private endpoint connections created on this IoT Central application.
provisioningState String
The provisioning state of the application.
state String
The current state of the application.
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"

Supporting Types

AppSku
, AppSkuArgs

ST0
ST0
ST1
ST1
ST2
ST2
AppSkuST0
ST0
AppSkuST1
ST1
AppSkuST2
ST2
ST0
ST0
ST1
ST1
ST2
ST2
ST0
ST0
ST1
ST1
ST2
ST2
ST0
ST0
ST1
ST1
ST2
ST2
"ST0"
ST0
"ST1"
ST1
"ST2"
ST2

AppSkuInfo
, AppSkuInfoArgs

Name This property is required. string | Pulumi.AzureNative.IoTCentral.AppSku
The name of the SKU.
Name This property is required. string | AppSku
The name of the SKU.
name This property is required. String | AppSku
The name of the SKU.
name This property is required. string | AppSku
The name of the SKU.
name This property is required. str | AppSku
The name of the SKU.
name This property is required. String | "ST0" | "ST1" | "ST2"
The name of the SKU.

AppSkuInfoResponse
, AppSkuInfoResponseArgs

Name This property is required. string
The name of the SKU.
Name This property is required. string
The name of the SKU.
name This property is required. String
The name of the SKU.
name This property is required. string
The name of the SKU.
name This property is required. str
The name of the SKU.
name This property is required. String
The name of the SKU.

NetworkAction
, NetworkActionArgs

Allow
Allow
Deny
Deny
NetworkActionAllow
Allow
NetworkActionDeny
Deny
Allow
Allow
Deny
Deny
Allow
Allow
Deny
Deny
ALLOW
Allow
DENY
Deny
"Allow"
Allow
"Deny"
Deny

NetworkRuleSetIpRule
, NetworkRuleSetIpRuleArgs

FilterName string
The readable name of the IP rule.
IpMask string
The CIDR block defining the IP range.
FilterName string
The readable name of the IP rule.
IpMask string
The CIDR block defining the IP range.
filterName String
The readable name of the IP rule.
ipMask String
The CIDR block defining the IP range.
filterName string
The readable name of the IP rule.
ipMask string
The CIDR block defining the IP range.
filter_name str
The readable name of the IP rule.
ip_mask str
The CIDR block defining the IP range.
filterName String
The readable name of the IP rule.
ipMask String
The CIDR block defining the IP range.

NetworkRuleSetIpRuleResponse
, NetworkRuleSetIpRuleResponseArgs

Action This property is required. string
The network action for the IP mask.
FilterName string
The readable name of the IP rule.
IpMask string
The CIDR block defining the IP range.
Action This property is required. string
The network action for the IP mask.
FilterName string
The readable name of the IP rule.
IpMask string
The CIDR block defining the IP range.
action This property is required. String
The network action for the IP mask.
filterName String
The readable name of the IP rule.
ipMask String
The CIDR block defining the IP range.
action This property is required. string
The network action for the IP mask.
filterName string
The readable name of the IP rule.
ipMask string
The CIDR block defining the IP range.
action This property is required. str
The network action for the IP mask.
filter_name str
The readable name of the IP rule.
ip_mask str
The CIDR block defining the IP range.
action This property is required. String
The network action for the IP mask.
filterName String
The readable name of the IP rule.
ipMask String
The CIDR block defining the IP range.

NetworkRuleSets
, NetworkRuleSetsArgs

ApplyToDevices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
ApplyToIoTCentral bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
DefaultAction string | Pulumi.AzureNative.IoTCentral.NetworkAction
The default network action to apply.
IpRules List<Pulumi.AzureNative.IoTCentral.Inputs.NetworkRuleSetIpRule>
List of IP rules.
ApplyToDevices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
ApplyToIoTCentral bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
DefaultAction string | NetworkAction
The default network action to apply.
IpRules []NetworkRuleSetIpRule
List of IP rules.
applyToDevices Boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral Boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction String | NetworkAction
The default network action to apply.
ipRules List<NetworkRuleSetIpRule>
List of IP rules.
applyToDevices boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction string | NetworkAction
The default network action to apply.
ipRules NetworkRuleSetIpRule[]
List of IP rules.
apply_to_devices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
apply_to_io_t_central bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
default_action str | NetworkAction
The default network action to apply.
ip_rules Sequence[NetworkRuleSetIpRule]
List of IP rules.
applyToDevices Boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral Boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction String | "Allow" | "Deny"
The default network action to apply.
ipRules List<Property Map>
List of IP rules.

NetworkRuleSetsResponse
, NetworkRuleSetsResponseArgs

ApplyToDevices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
ApplyToIoTCentral bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
DefaultAction string
The default network action to apply.
IpRules List<Pulumi.AzureNative.IoTCentral.Inputs.NetworkRuleSetIpRuleResponse>
List of IP rules.
ApplyToDevices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
ApplyToIoTCentral bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
DefaultAction string
The default network action to apply.
IpRules []NetworkRuleSetIpRuleResponse
List of IP rules.
applyToDevices Boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral Boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction String
The default network action to apply.
ipRules List<NetworkRuleSetIpRuleResponse>
List of IP rules.
applyToDevices boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction string
The default network action to apply.
ipRules NetworkRuleSetIpRuleResponse[]
List of IP rules.
apply_to_devices bool
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
apply_to_io_t_central bool
Whether these rules apply for connectivity via IoT Central web portal and APIs.
default_action str
The default network action to apply.
ip_rules Sequence[NetworkRuleSetIpRuleResponse]
List of IP rules.
applyToDevices Boolean
Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
applyToIoTCentral Boolean
Whether these rules apply for connectivity via IoT Central web portal and APIs.
defaultAction String
The default network action to apply.
ipRules List<Property Map>
List of IP rules.

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

GroupIds This property is required. List<string>
The group ids for the private endpoint resource.
Id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. Pulumi.AzureNative.IoTCentral.Inputs.PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. Pulumi.AzureNative.IoTCentral.Inputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint Pulumi.AzureNative.IoTCentral.Inputs.PrivateEndpointResponse
The private endpoint resource.
GroupIds This property is required. []string
The group ids for the private endpoint resource.
Id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. List<String>
The group ids for the private endpoint resource.
id This property is required. String
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. string[]
The group ids for the private endpoint resource.
id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. string
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The private endpoint resource.
group_ids This property is required. Sequence[str]
The group ids for the private endpoint resource.
id This property is required. str
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. str
The name of the resource
private_link_service_connection_state This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioning_state This property is required. str
The provisioning state of the private endpoint connection resource.
system_data This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
private_endpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. List<String>
The group ids for the private endpoint resource.
id This property is required. String
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. Property Map
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint Property Map
The private endpoint resource.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id This property is required. string
The ARM identifier for private endpoint.
Id This property is required. string
The ARM identifier for private endpoint.
id This property is required. String
The ARM identifier for private endpoint.
id This property is required. string
The ARM identifier for private endpoint.
id This property is required. str
The ARM identifier for private endpoint.
id This property is required. String
The ARM identifier for private endpoint.

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PublicNetworkAccess
, PublicNetworkAccessArgs

Enabled
Enabled
Disabled
Disabled
PublicNetworkAccessEnabled
Enabled
PublicNetworkAccessDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

SystemAssignedServiceIdentity
, SystemAssignedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.IoTCentral.SystemAssignedServiceIdentityType
Type of managed service identity (either system assigned, or none).
Type This property is required. string | SystemAssignedServiceIdentityType
Type of managed service identity (either system assigned, or none).
type This property is required. String | SystemAssignedServiceIdentityType
Type of managed service identity (either system assigned, or none).
type This property is required. string | SystemAssignedServiceIdentityType
Type of managed service identity (either system assigned, or none).
type This property is required. str | SystemAssignedServiceIdentityType
Type of managed service identity (either system assigned, or none).
type This property is required. String | "None" | "SystemAssigned"
Type of managed service identity (either system assigned, or none).

SystemAssignedServiceIdentityResponse
, SystemAssignedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (either system assigned, or none).
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (either system assigned, or none).
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (either system assigned, or none).
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (either system assigned, or none).
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (either system assigned, or none).
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (either system assigned, or none).

SystemAssignedServiceIdentityType
, SystemAssignedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
SystemAssignedServiceIdentityTypeNone
None
SystemAssignedServiceIdentityTypeSystemAssigned
SystemAssigned
None
None
SystemAssigned
SystemAssigned
None
None
SystemAssigned
SystemAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
"None"
None
"SystemAssigned"
SystemAssigned

SystemDataResponse
, SystemDataResponseArgs

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.
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:iotcentral:App myIoTCentralApp /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTCentral/iotApps/{resourceName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi