azure-native.iotcentral.App
Explore with Pulumi AI
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",
});
});
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
})
}
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());
}
}
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",
});
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")
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
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)
type: azure-native:iotcentral:App
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppArgs
- 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 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 string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Resource
Group stringName - The name of the resource group that contains the IoT Central application.
- Sku
Pulumi.
Azure Native. Io TCentral. Inputs. App Sku Info - A valid instance SKU.
- Display
Name string - The display name of the application.
- Identity
Pulumi.
Azure Native. Io TCentral. Inputs. System Assigned Service Identity - The managed identities for the IoT Central application.
- Location string
- The geo-location where the resource lives
- Network
Rule Pulumi.Sets Azure Native. Io TCentral. Inputs. Network Rule Sets - Network Rule Set Properties of this IoT Central application.
- Public
Network string | Pulumi.Access Azure Native. Io TCentral. Public Network Access - Whether requests from the public network are allowed.
- Resource
Name string - The ARM resource name of the IoT Central application.
- Subdomain string
- The subdomain of the application.
- Dictionary<string, string>
- Resource tags.
- Template 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 stringName - The name of the resource group that contains the IoT Central application.
- Sku
App
Sku Info Args - A valid instance SKU.
- Display
Name string - The display name of the application.
- Identity
System
Assigned Service Identity Args - The managed identities for the IoT Central application.
- Location string
- The geo-location where the resource lives
- Network
Rule NetworkSets Rule Sets Args - Network Rule Set Properties of this IoT Central application.
- Public
Network string | PublicAccess Network Access - Whether requests from the public network are allowed.
- Resource
Name string - The ARM resource name of the IoT Central application.
- Subdomain string
- The subdomain of the application.
- map[string]string
- Resource tags.
- Template 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 StringName - The name of the resource group that contains the IoT Central application.
- sku
App
Sku Info - A valid instance SKU.
- display
Name String - The display name of the application.
- identity
System
Assigned Service Identity - The managed identities for the IoT Central application.
- location String
- The geo-location where the resource lives
- network
Rule NetworkSets Rule Sets - Network Rule Set Properties of this IoT Central application.
- public
Network String | PublicAccess Network Access - Whether requests from the public network are allowed.
- resource
Name String - The ARM resource name of the IoT Central application.
- subdomain String
- The subdomain of the application.
- Map<String,String>
- Resource tags.
- template 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 stringName - The name of the resource group that contains the IoT Central application.
- sku
App
Sku Info - A valid instance SKU.
- display
Name string - The display name of the application.
- identity
System
Assigned Service Identity - The managed identities for the IoT Central application.
- location string
- The geo-location where the resource lives
- network
Rule NetworkSets Rule Sets - Network Rule Set Properties of this IoT Central application.
- public
Network string | PublicAccess Network Access - Whether requests from the public network are allowed.
- resource
Name string - The ARM resource name of the IoT Central application.
- subdomain string
- The subdomain of the application.
- {[key: string]: string}
- Resource tags.
- template 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_ strname - The name of the resource group that contains the IoT Central application.
- sku
App
Sku Info Args - A valid instance SKU.
- display_
name str - The display name of the application.
- identity
System
Assigned Service Identity Args - The managed identities for the IoT Central application.
- location str
- The geo-location where the resource lives
- network_
rule_ Networksets Rule Sets Args - Network Rule Set Properties of this IoT Central application.
- public_
network_ str | Publicaccess Network Access - Whether requests from the public network are allowed.
- resource_
name str - The ARM resource name of the IoT Central application.
- subdomain str
- The subdomain of the application.
- Mapping[str, str]
- Resource tags.
- template 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.
- resource
Group StringName - The name of the resource group that contains the IoT Central application.
- sku Property Map
- A valid instance SKU.
- display
Name String - The display name of the application.
- identity Property Map
- The managed identities for the IoT Central application.
- location String
- The geo-location where the resource lives
- network
Rule Property MapSets - Network Rule Set Properties of this IoT Central application.
- public
Network String | "Enabled" | "Disabled"Access - Whether requests from the public network are allowed.
- resource
Name String - The ARM resource name of the IoT Central application.
- subdomain String
- The subdomain of the application.
- Map<String>
- Resource tags.
- template 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:
- Application
Id string - The ID of the application.
- Azure
Api stringVersion - 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
- Private
Endpoint List<Pulumi.Connections Azure Native. Io TCentral. Outputs. Private Endpoint Connection Response> - Private endpoint connections created on this IoT Central application.
- Provisioning
State string - The provisioning state of the application.
- State string
- The current state of the application.
- System
Data Pulumi.Azure Native. Io TCentral. 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"
- Application
Id string - The ID of the application.
- Azure
Api stringVersion - 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
- Private
Endpoint []PrivateConnections Endpoint Connection Response - Private endpoint connections created on this IoT Central application.
- Provisioning
State string - The provisioning state of the application.
- State string
- The current state of the application.
- 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"
- application
Id String - The ID of the application.
- azure
Api StringVersion - 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
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - Private endpoint connections created on this IoT Central application.
- provisioning
State String - The provisioning state of the application.
- state String
- The current state of the application.
- 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"
- application
Id string - The ID of the application.
- azure
Api stringVersion - 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
- private
Endpoint PrivateConnections Endpoint Connection Response[] - Private endpoint connections created on this IoT Central application.
- provisioning
State string - The provisioning state of the application.
- state string
- The current state of the application.
- 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"
- application_
id str - The ID of the application.
- azure_
api_ strversion - 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_ Sequence[Privateconnections Endpoint Connection Response] - 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 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"
- application
Id String - The ID of the application.
- azure
Api StringVersion - 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
- private
Endpoint List<Property Map>Connections - Private endpoint connections created on this IoT Central application.
- provisioning
State String - The provisioning state of the application.
- state String
- The current state of the application.
- 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"
Supporting Types
AppSku, AppSkuArgs
- ST0
- ST0
- ST1
- ST1
- ST2
- ST2
- App
Sku ST0 - ST0
- App
Sku ST1 - ST1
- App
Sku ST2 - 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
string | Pulumi.
Azure Native. Io TCentral. App Sku - The name of the SKU.
- name String | "ST0" | "ST1" | "ST2"
- The name of the SKU.
AppSkuInfoResponse, AppSkuInfoResponseArgs
- Name string
- The name of the SKU.
- Name string
- The name of the SKU.
- name String
- The name of the SKU.
- name string
- The name of the SKU.
- name str
- The name of the SKU.
- name String
- The name of the SKU.
NetworkAction, NetworkActionArgs
- Allow
- Allow
- Deny
- Deny
- Network
Action Allow - Allow
- Network
Action Deny - Deny
- Allow
- Allow
- Deny
- Deny
- Allow
- Allow
- Deny
- Deny
- ALLOW
- Allow
- DENY
- Deny
- "Allow"
- Allow
- "Deny"
- Deny
NetworkRuleSetIpRule, NetworkRuleSetIpRuleArgs
- Filter
Name string - The readable name of the IP rule.
- Ip
Mask string - The CIDR block defining the IP range.
- Filter
Name string - The readable name of the IP rule.
- Ip
Mask string - The CIDR block defining the IP range.
- filter
Name String - The readable name of the IP rule.
- ip
Mask String - The CIDR block defining the IP range.
- filter
Name string - The readable name of the IP rule.
- ip
Mask 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.
- filter
Name String - The readable name of the IP rule.
- ip
Mask String - The CIDR block defining the IP range.
NetworkRuleSetIpRuleResponse, NetworkRuleSetIpRuleResponseArgs
- Action string
- The network action for the IP mask.
- Filter
Name string - The readable name of the IP rule.
- Ip
Mask string - The CIDR block defining the IP range.
- Action string
- The network action for the IP mask.
- Filter
Name string - The readable name of the IP rule.
- Ip
Mask string - The CIDR block defining the IP range.
- action String
- The network action for the IP mask.
- filter
Name String - The readable name of the IP rule.
- ip
Mask String - The CIDR block defining the IP range.
- action string
- The network action for the IP mask.
- filter
Name string - The readable name of the IP rule.
- ip
Mask string - The CIDR block defining the IP range.
- action 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 String
- The network action for the IP mask.
- filter
Name String - The readable name of the IP rule.
- ip
Mask String - The CIDR block defining the IP range.
NetworkRuleSets, NetworkRuleSetsArgs
- Apply
To boolDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- Apply
To boolIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- Default
Action string | Pulumi.Azure Native. Io TCentral. Network Action - The default network action to apply.
- Ip
Rules List<Pulumi.Azure Native. Io TCentral. Inputs. Network Rule Set Ip Rule> - List of IP rules.
- Apply
To boolDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- Apply
To boolIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- Default
Action string | NetworkAction - The default network action to apply.
- Ip
Rules []NetworkRule Set Ip Rule - List of IP rules.
- apply
To BooleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To BooleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action String | NetworkAction - The default network action to apply.
- ip
Rules List<NetworkRule Set Ip Rule> - List of IP rules.
- apply
To booleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To booleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action string | NetworkAction - The default network action to apply.
- ip
Rules NetworkRule Set Ip Rule[] - List of IP rules.
- apply_
to_ booldevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply_
to_ boolio_ t_ central - 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[NetworkRule Set Ip Rule] - List of IP rules.
- apply
To BooleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To BooleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action String | "Allow" | "Deny" - The default network action to apply.
- ip
Rules List<Property Map> - List of IP rules.
NetworkRuleSetsResponse, NetworkRuleSetsResponseArgs
- Apply
To boolDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- Apply
To boolIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- Default
Action string - The default network action to apply.
- Ip
Rules List<Pulumi.Azure Native. Io TCentral. Inputs. Network Rule Set Ip Rule Response> - List of IP rules.
- Apply
To boolDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- Apply
To boolIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- Default
Action string - The default network action to apply.
- Ip
Rules []NetworkRule Set Ip Rule Response - List of IP rules.
- apply
To BooleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To BooleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action String - The default network action to apply.
- ip
Rules List<NetworkRule Set Ip Rule Response> - List of IP rules.
- apply
To booleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To booleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action string - The default network action to apply.
- ip
Rules NetworkRule Set Ip Rule Response[] - List of IP rules.
- apply_
to_ booldevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply_
to_ boolio_ t_ central - 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[NetworkRule Set Ip Rule Response] - List of IP rules.
- apply
To BooleanDevices - Whether these rules apply for device connectivity to IoT Hub and Device Provisioning service associated with this application.
- apply
To BooleanIo TCentral - Whether these rules apply for connectivity via IoT Central web portal and APIs.
- default
Action String - The default network action to apply.
- ip
Rules List<Property Map> - List of IP rules.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Group
Ids List<string> - The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Io TCentral. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data Pulumi.Azure Native. Io TCentral. Inputs. 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"
- Private
Endpoint Pulumi.Azure Native. Io TCentral. Inputs. Private Endpoint Response - The private endpoint resource.
- Group
Ids []string - The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- 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"
- Private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids List<String> - The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- 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"
- private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids string[] - The group ids for the private endpoint resource.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- 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"
- private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group_
ids Sequence[str] - The group ids for the private endpoint resource.
- id str
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- 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"
- private_
endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids List<String> - The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- 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"
- private
Endpoint Property Map - The private endpoint resource.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for private endpoint.
- Id string
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
- id string
- The ARM identifier for private endpoint.
- id str
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required 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 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 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 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.
- actions
Required 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
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SystemAssignedServiceIdentity, SystemAssignedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Io TCentral. System Assigned Service Identity Type - Type of managed service identity (either system assigned, or none).
- Type
string | System
Assigned Service Identity Type - Type of managed service identity (either system assigned, or none).
- type
String | System
Assigned Service Identity Type - Type of managed service identity (either system assigned, or none).
- type
string | System
Assigned Service Identity Type - Type of managed service identity (either system assigned, or none).
- type
str | System
Assigned Service Identity Type - Type of managed service identity (either system assigned, or none).
- type
String | "None" | "System
Assigned" - Type of managed service identity (either system assigned, or none).
SystemAssignedServiceIdentityResponse, SystemAssignedServiceIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (either system assigned, or none).
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (either system assigned, or none).
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (either system assigned, or none).
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (either system assigned, or none).
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (either system assigned, or none).
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (either system assigned, or none).
SystemAssignedServiceIdentityType, SystemAssignedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- System
Assigned Service Identity Type None - None
- System
Assigned Service Identity Type System Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
SystemDataResponse, SystemDataResponseArgs
- 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:iotcentral:App myIoTCentralApp /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTCentral/iotApps/{resourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0