UNPKG

@cdktf/provider-azurerm

Version:

Prebuilt azurerm Provider for Terraform CDK (cdktf)

231 lines (230 loc) 11.2 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IotcentralApplicationConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#display_name IotcentralApplication#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#id IotcentralApplication#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#location IotcentralApplication#location} */ readonly location: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#name IotcentralApplication#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#public_network_access_enabled IotcentralApplication#public_network_access_enabled} */ readonly publicNetworkAccessEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#resource_group_name IotcentralApplication#resource_group_name} */ readonly resourceGroupName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#sku IotcentralApplication#sku} */ readonly sku?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#sub_domain IotcentralApplication#sub_domain} */ readonly subDomain: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#tags IotcentralApplication#tags} */ readonly tags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#template IotcentralApplication#template} */ readonly template?: string; /** * identity block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#identity IotcentralApplication#identity} */ readonly identity?: IotcentralApplicationIdentity; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#timeouts IotcentralApplication#timeouts} */ readonly timeouts?: IotcentralApplicationTimeouts; } export interface IotcentralApplicationIdentity { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#type IotcentralApplication#type} */ readonly type: string; } export declare function iotcentralApplicationIdentityToTerraform(struct?: IotcentralApplicationIdentityOutputReference | IotcentralApplicationIdentity): any; export declare function iotcentralApplicationIdentityToHclTerraform(struct?: IotcentralApplicationIdentityOutputReference | IotcentralApplicationIdentity): any; export declare class IotcentralApplicationIdentityOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): IotcentralApplicationIdentity | undefined; set internalValue(value: IotcentralApplicationIdentity | undefined); get principalId(): string; get tenantId(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; } export interface IotcentralApplicationTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#create IotcentralApplication#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#delete IotcentralApplication#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#read IotcentralApplication#read} */ readonly read?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#update IotcentralApplication#update} */ readonly update?: string; } export declare function iotcentralApplicationTimeoutsToTerraform(struct?: IotcentralApplicationTimeouts | cdktf.IResolvable): any; export declare function iotcentralApplicationTimeoutsToHclTerraform(struct?: IotcentralApplicationTimeouts | cdktf.IResolvable): any; export declare class IotcentralApplicationTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): IotcentralApplicationTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IotcentralApplicationTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application azurerm_iotcentral_application} */ export declare class IotcentralApplication extends cdktf.TerraformResource { static readonly tfResourceType = "azurerm_iotcentral_application"; /** * Generates CDKTF code for importing a IotcentralApplication resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the IotcentralApplication to import * @param importFromId The id of the existing IotcentralApplication that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IotcentralApplication to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/iotcentral_application azurerm_iotcentral_application} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options IotcentralApplicationConfig */ constructor(scope: Construct, id: string, config: IotcentralApplicationConfig); private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _location?; get location(): string; set location(value: string); get locationInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _publicNetworkAccessEnabled?; get publicNetworkAccessEnabled(): boolean | cdktf.IResolvable; set publicNetworkAccessEnabled(value: boolean | cdktf.IResolvable); resetPublicNetworkAccessEnabled(): void; get publicNetworkAccessEnabledInput(): boolean | cdktf.IResolvable | undefined; private _resourceGroupName?; get resourceGroupName(): string; set resourceGroupName(value: string); get resourceGroupNameInput(): string | undefined; private _sku?; get sku(): string; set sku(value: string); resetSku(): void; get skuInput(): string | undefined; private _subDomain?; get subDomain(): string; set subDomain(value: string); get subDomainInput(): string | undefined; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; } | undefined; private _template?; get template(): string; set template(value: string); resetTemplate(): void; get templateInput(): string | undefined; private _identity; get identity(): IotcentralApplicationIdentityOutputReference; putIdentity(value: IotcentralApplicationIdentity): void; resetIdentity(): void; get identityInput(): IotcentralApplicationIdentity | undefined; private _timeouts; get timeouts(): IotcentralApplicationTimeoutsOutputReference; putTimeouts(value: IotcentralApplicationTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | IotcentralApplicationTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }