Module iotcentral
This page documents the language specification for the azure package. If you're looking for help working with the inputs, outputs, or functions of azure resources in a Pulumi program, please see the resource documentation for examples and API reference.
Resources
Others
Resources
Resource Application
class Application extends CustomResourceManages an IoT Central Application
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleApplication = new azure.iotcentral.Application("exampleApplication", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
subDomain: "example-iotcentral-app-subdomain",
displayName: "example-iotcentral-app-display-name",
sku: "S1",
template: "iotc-default@1.0.0",
tags: {
Foo: "Bar",
},
});constructor
new Application(name: string, args: ApplicationArgs, opts?: pulumi.CustomResourceOptions)Create a Application resource with the given unique name, arguments, and options.
nameThe unique name of the resource.argsThe arguments to use to populate this resource's properties.optsA bag of options that control this resource's behavior.
method get
public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ApplicationState, opts?: pulumi.CustomResourceOptions): ApplicationGet an existing Application resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
method getProvider
getProvider(moduleMember: string): ProviderResource | undefinedmethod isInstance
public static isInstance(obj: any): obj is ApplicationReturns true if the given object is an instance of Application. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.
property displayName
public displayName: pulumi.Output<string>;A displayName name. Custom display name for the IoT Central application. Default is resource name.
property id
id: Output<ID>;id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.
property location
public location: pulumi.Output<string>;Specifies the supported Azure location where the resource has to be create. Changing this forces a new resource to be created.
property name
public name: pulumi.Output<string>;Specifies the name of the IotHub resource. Changing this forces a new resource to be created.
property resourceGroupName
public resourceGroupName: pulumi.Output<string>;The name of the resource group under which the IotHub resource has to be created. Changing this forces a new resource to be created.
property sku
public sku: pulumi.Output<string | undefined>;A sku name. Possible values is ST1, ST2, Default value is ST1
property subDomain
public subDomain: pulumi.Output<string>;A subDomain name. Subdomain for the IoT Central URL. Each application must have a unique subdomain.
property tags
public tags: pulumi.Output<{[key: string]: string} | undefined>;A mapping of tags to assign to the resource.
property template
public template: pulumi.Output<string>;A template name. IoT Central application template name. Default is a custom application.
property urn
urn: Output<URN>;urn is the stable logical URN used to distinctly address a resource, both before and after deployments.
Others
interface ApplicationArgs
interface ApplicationArgsThe set of arguments for constructing a Application resource.
property displayName
displayName?: pulumi.Input<string>;A displayName name. Custom display name for the IoT Central application. Default is resource name.
property location
location?: pulumi.Input<string>;Specifies the supported Azure location where the resource has to be create. Changing this forces a new resource to be created.
property name
name?: pulumi.Input<string>;Specifies the name of the IotHub resource. Changing this forces a new resource to be created.
property resourceGroupName
resourceGroupName: pulumi.Input<string>;The name of the resource group under which the IotHub resource has to be created. Changing this forces a new resource to be created.
property sku
sku?: pulumi.Input<string>;A sku name. Possible values is ST1, ST2, Default value is ST1
property subDomain
subDomain: pulumi.Input<string>;A subDomain name. Subdomain for the IoT Central URL. Each application must have a unique subdomain.
property tags
tags?: pulumi.Input<{[key: string]: pulumi.Input<string>}>;A mapping of tags to assign to the resource.
property template
template?: pulumi.Input<string>;A template name. IoT Central application template name. Default is a custom application.
interface ApplicationState
interface ApplicationStateInput properties used for looking up and filtering Application resources.
property displayName
displayName?: pulumi.Input<string>;A displayName name. Custom display name for the IoT Central application. Default is resource name.
property location
location?: pulumi.Input<string>;Specifies the supported Azure location where the resource has to be create. Changing this forces a new resource to be created.
property name
name?: pulumi.Input<string>;Specifies the name of the IotHub resource. Changing this forces a new resource to be created.
property resourceGroupName
resourceGroupName?: pulumi.Input<string>;The name of the resource group under which the IotHub resource has to be created. Changing this forces a new resource to be created.
property sku
sku?: pulumi.Input<string>;A sku name. Possible values is ST1, ST2, Default value is ST1
property subDomain
subDomain?: pulumi.Input<string>;A subDomain name. Subdomain for the IoT Central URL. Each application must have a unique subdomain.
property tags
tags?: pulumi.Input<{[key: string]: pulumi.Input<string>}>;A mapping of tags to assign to the resource.
property template
template?: pulumi.Input<string>;A template name. IoT Central application template name. Default is a custom application.