import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AppConnectionAzureClientSecretsConfig extends cdktf.TerraformMetaArguments { /** * The credentials for the Azure Client Secrets App Connection * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#credentials AppConnectionAzureClientSecrets#credentials} */ readonly credentials: AppConnectionAzureClientSecretsCredentials; /** * An optional description for the Azure Client Secrets App Connection. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#description AppConnectionAzureClientSecrets#description} */ readonly description?: string; /** * The method used to authenticate with Azure Client Secrets. Possible values are: client-secret * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#method AppConnectionAzureClientSecrets#method} */ readonly method: string; /** * The name of the Azure Client Secrets App Connection to create. Must be slug-friendly * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#name AppConnectionAzureClientSecrets#name} */ readonly name: string; } export interface AppConnectionAzureClientSecretsCredentials { /** * The Azure application (client) ID. Required for client-secret method. For more details, refer to the documentation here infisical.com/docs/integrations/app-connections/azure-client-secrets * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#client_id AppConnectionAzureClientSecrets#client_id} */ readonly clientId: string; /** * The Azure client secret. Required for client-secret method. For more details, refer to the documentation here infisical.com/docs/integrations/app-connections/azure-client-secrets * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#client_secret AppConnectionAzureClientSecrets#client_secret} */ readonly clientSecret: string; /** * The Azure Active Directory (AAD) tenant ID. Required for client-secret method. For more details, refer to the documentation here infisical.com/docs/integrations/app-connections/azure-client-secrets * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#tenant_id AppConnectionAzureClientSecrets#tenant_id} */ readonly tenantId: string; } export declare function appConnectionAzureClientSecretsCredentialsToTerraform(struct?: AppConnectionAzureClientSecretsCredentials | cdktf.IResolvable): any; export declare function appConnectionAzureClientSecretsCredentialsToHclTerraform(struct?: AppConnectionAzureClientSecretsCredentials | cdktf.IResolvable): any; export declare class AppConnectionAzureClientSecretsCredentialsOutputReference 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(): AppConnectionAzureClientSecretsCredentials | cdktf.IResolvable | undefined; set internalValue(value: AppConnectionAzureClientSecretsCredentials | cdktf.IResolvable | undefined); private _clientId?; get clientId(): string; set clientId(value: string); get clientIdInput(): string; private _clientSecret?; get clientSecret(): string; set clientSecret(value: string); get clientSecretInput(): string; private _tenantId?; get tenantId(): string; set tenantId(value: string); get tenantIdInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets infisical_app_connection_azure_client_secrets} */ export declare class AppConnectionAzureClientSecrets extends cdktf.TerraformResource { static readonly tfResourceType = "infisical_app_connection_azure_client_secrets"; /** * Generates CDKTF code for importing a AppConnectionAzureClientSecrets resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the AppConnectionAzureClientSecrets to import * @param importFromId The id of the existing AppConnectionAzureClientSecrets that should be imported. Refer to the {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AppConnectionAzureClientSecrets to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/infisical/infisical/0.15.56/docs/resources/app_connection_azure_client_secrets infisical_app_connection_azure_client_secrets} 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 AppConnectionAzureClientSecretsConfig */ constructor(scope: Construct, id: string, config: AppConnectionAzureClientSecretsConfig); private _credentials; get credentials(): AppConnectionAzureClientSecretsCredentialsOutputReference; putCredentials(value: AppConnectionAzureClientSecretsCredentials): void; get credentialsInput(): any; get credentialsHash(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get id(): any; private _method?; get method(): string; set method(value: string); get methodInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }