import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an IoT Hub Device Update Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "East US", * }); * const exampleIotHubDeviceUpdateAccount = new azure.iot.IotHubDeviceUpdateAccount("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * identity: { * type: "SystemAssigned", * }, * tags: { * key: "value", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DeviceUpdate` - 2022-10-01 * * ## Import * * IoT Hub Device Update Account can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:iot/iotHubDeviceUpdateAccount:IotHubDeviceUpdateAccount example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.DeviceUpdate/accounts/account1 * ``` */ export declare class IotHubDeviceUpdateAccount extends pulumi.CustomResource { /** * Get an existing IotHubDeviceUpdateAccount 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: IotHubDeviceUpdateAccountState, opts?: pulumi.CustomResourceOptions): IotHubDeviceUpdateAccount; /** * Returns true if the given object is an instance of IotHubDeviceUpdateAccount. 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 IotHubDeviceUpdateAccount; /** * The API host name of the IoT Hub Device Update Account. */ readonly hostName: pulumi.Output; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * Specifies the Azure Region where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Specifies the name which should be used for this IoT Hub Device Update Account. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Specifies whether the public network access is enabled for the IoT Hub Device Update Account. Possible values are `true` and `false`. Defaults to `true`. */ readonly publicNetworkAccessEnabled: pulumi.Output; /** * Specifies the name of the Resource Group where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * Sku of the IoT Hub Device Update Account. Possible values are `Free` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created. */ readonly sku: pulumi.Output; /** * A mapping of tags which should be assigned to the IoT Hub Device Update Account. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a IotHubDeviceUpdateAccount 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: IotHubDeviceUpdateAccountArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IotHubDeviceUpdateAccount resources. */ export interface IotHubDeviceUpdateAccountState { /** * The API host name of the IoT Hub Device Update Account. */ hostName?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * Specifies the Azure Region where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name which should be used for this IoT Hub Device Update Account. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies whether the public network access is enabled for the IoT Hub Device Update Account. Possible values are `true` and `false`. Defaults to `true`. */ publicNetworkAccessEnabled?: pulumi.Input; /** * Specifies the name of the Resource Group where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * Sku of the IoT Hub Device Update Account. Possible values are `Free` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created. */ sku?: pulumi.Input; /** * A mapping of tags which should be assigned to the IoT Hub Device Update Account. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a IotHubDeviceUpdateAccount resource. */ export interface IotHubDeviceUpdateAccountArgs { /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * Specifies the Azure Region where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name which should be used for this IoT Hub Device Update Account. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies whether the public network access is enabled for the IoT Hub Device Update Account. Possible values are `true` and `false`. Defaults to `true`. */ publicNetworkAccessEnabled?: pulumi.Input; /** * Specifies the name of the Resource Group where the IoT Hub Device Update Account should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * Sku of the IoT Hub Device Update Account. Possible values are `Free` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created. */ sku?: pulumi.Input; /** * A mapping of tags which should be assigned to the IoT Hub Device Update Account. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }