@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.97 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* 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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare class App extends pulumi.CustomResource {
/**
* Get an existing App resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): App;
/**
* Returns true if the given object is an instance of App. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is App;
/**
* The ID of the application.
*/
readonly applicationId: pulumi.Output<string>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The display name of the application.
*/
readonly displayName: pulumi.Output<string | undefined>;
/**
* The managed identities for the IoT Central application.
*/
readonly identity: pulumi.Output<outputs.iotcentral.SystemAssignedServiceIdentityResponse | undefined>;
/**
* The geo-location where the resource lives
*/
readonly location: pulumi.Output<string>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* Network Rule Set Properties of this IoT Central application.
*/
readonly networkRuleSets: pulumi.Output<outputs.iotcentral.NetworkRuleSetsResponse | undefined>;
/**
* Private endpoint connections created on this IoT Central application.
*/
readonly privateEndpointConnections: pulumi.Output<outputs.iotcentral.PrivateEndpointConnectionResponse[]>;
/**
* The provisioning state of the application.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* Whether requests from the public network are allowed.
*/
readonly publicNetworkAccess: pulumi.Output<string | undefined>;
/**
* A valid instance SKU.
*/
readonly sku: pulumi.Output<outputs.iotcentral.AppSkuInfoResponse>;
/**
* The current state of the application.
*/
readonly state: pulumi.Output<string>;
/**
* The subdomain of the application.
*/
readonly subdomain: pulumi.Output<string | undefined>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: pulumi.Output<outputs.iotcentral.SystemDataResponse>;
/**
* Resource tags.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* 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.
*/
readonly template: pulumi.Output<string | undefined>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Create a App resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: AppArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a App resource.
*/
export interface AppArgs {
/**
* The display name of the application.
*/
displayName?: pulumi.Input<string>;
/**
* The managed identities for the IoT Central application.
*/
identity?: pulumi.Input<inputs.iotcentral.SystemAssignedServiceIdentityArgs>;
/**
* The geo-location where the resource lives
*/
location?: pulumi.Input<string>;
/**
* Network Rule Set Properties of this IoT Central application.
*/
networkRuleSets?: pulumi.Input<inputs.iotcentral.NetworkRuleSetsArgs>;
/**
* Whether requests from the public network are allowed.
*/
publicNetworkAccess?: pulumi.Input<string | enums.iotcentral.PublicNetworkAccess>;
/**
* The name of the resource group that contains the IoT Central application.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The ARM resource name of the IoT Central application.
*/
resourceName?: pulumi.Input<string>;
/**
* A valid instance SKU.
*/
sku: pulumi.Input<inputs.iotcentral.AppSkuInfoArgs>;
/**
* The subdomain of the application.
*/
subdomain?: pulumi.Input<string>;
/**
* Resource tags.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<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.
*/
template?: pulumi.Input<string>;
}