UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

472 lines (471 loc) 24 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FileStorageMountTargetConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#availability_domain FileStorageMountTarget#availability_domain} */ readonly availabilityDomain: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#compartment_id FileStorageMountTarget#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#defined_tags FileStorageMountTarget#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#display_name FileStorageMountTarget#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#freeform_tags FileStorageMountTarget#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#hostname_label FileStorageMountTarget#hostname_label} */ readonly hostnameLabel?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#id FileStorageMountTarget#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/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#idmap_type FileStorageMountTarget#idmap_type} */ readonly idmapType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#ip_address FileStorageMountTarget#ip_address} */ readonly ipAddress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#is_lock_override FileStorageMountTarget#is_lock_override} */ readonly isLockOverride?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#nsg_ids FileStorageMountTarget#nsg_ids} */ readonly nsgIds?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#requested_throughput FileStorageMountTarget#requested_throughput} */ readonly requestedThroughput?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#subnet_id FileStorageMountTarget#subnet_id} */ readonly subnetId: string; /** * kerberos block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#kerberos FileStorageMountTarget#kerberos} */ readonly kerberos?: FileStorageMountTargetKerberos; /** * ldap_idmap block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#ldap_idmap FileStorageMountTarget#ldap_idmap} */ readonly ldapIdmap?: FileStorageMountTargetLdapIdmap; /** * locks block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#locks FileStorageMountTarget#locks} */ readonly locks?: FileStorageMountTargetLocks[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#timeouts FileStorageMountTarget#timeouts} */ readonly timeouts?: FileStorageMountTargetTimeouts; } export interface FileStorageMountTargetKerberos { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#backup_key_tab_secret_version FileStorageMountTarget#backup_key_tab_secret_version} */ readonly backupKeyTabSecretVersion?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#current_key_tab_secret_version FileStorageMountTarget#current_key_tab_secret_version} */ readonly currentKeyTabSecretVersion?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#is_kerberos_enabled FileStorageMountTarget#is_kerberos_enabled} */ readonly isKerberosEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#kerberos_realm FileStorageMountTarget#kerberos_realm} */ readonly kerberosRealm: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#key_tab_secret_id FileStorageMountTarget#key_tab_secret_id} */ readonly keyTabSecretId?: string; } export declare function fileStorageMountTargetKerberosToTerraform(struct?: FileStorageMountTargetKerberosOutputReference | FileStorageMountTargetKerberos): any; export declare function fileStorageMountTargetKerberosToHclTerraform(struct?: FileStorageMountTargetKerberosOutputReference | FileStorageMountTargetKerberos): any; export declare class FileStorageMountTargetKerberosOutputReference 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(): FileStorageMountTargetKerberos | undefined; set internalValue(value: FileStorageMountTargetKerberos | undefined); private _backupKeyTabSecretVersion?; get backupKeyTabSecretVersion(): number; set backupKeyTabSecretVersion(value: number); resetBackupKeyTabSecretVersion(): void; get backupKeyTabSecretVersionInput(): number | undefined; private _currentKeyTabSecretVersion?; get currentKeyTabSecretVersion(): number; set currentKeyTabSecretVersion(value: number); resetCurrentKeyTabSecretVersion(): void; get currentKeyTabSecretVersionInput(): number | undefined; private _isKerberosEnabled?; get isKerberosEnabled(): boolean | cdktf.IResolvable; set isKerberosEnabled(value: boolean | cdktf.IResolvable); resetIsKerberosEnabled(): void; get isKerberosEnabledInput(): boolean | cdktf.IResolvable | undefined; private _kerberosRealm?; get kerberosRealm(): string; set kerberosRealm(value: string); get kerberosRealmInput(): string | undefined; private _keyTabSecretId?; get keyTabSecretId(): string; set keyTabSecretId(value: string); resetKeyTabSecretId(): void; get keyTabSecretIdInput(): string | undefined; } export interface FileStorageMountTargetLdapIdmap { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#cache_lifetime_seconds FileStorageMountTarget#cache_lifetime_seconds} */ readonly cacheLifetimeSeconds?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#cache_refresh_interval_seconds FileStorageMountTarget#cache_refresh_interval_seconds} */ readonly cacheRefreshIntervalSeconds?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#group_search_base FileStorageMountTarget#group_search_base} */ readonly groupSearchBase?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#negative_cache_lifetime_seconds FileStorageMountTarget#negative_cache_lifetime_seconds} */ readonly negativeCacheLifetimeSeconds?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#outbound_connector1id FileStorageMountTarget#outbound_connector1id} */ readonly outboundConnector1Id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#outbound_connector2id FileStorageMountTarget#outbound_connector2id} */ readonly outboundConnector2Id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#schema_type FileStorageMountTarget#schema_type} */ readonly schemaType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#user_search_base FileStorageMountTarget#user_search_base} */ readonly userSearchBase?: string; } export declare function fileStorageMountTargetLdapIdmapToTerraform(struct?: FileStorageMountTargetLdapIdmapOutputReference | FileStorageMountTargetLdapIdmap): any; export declare function fileStorageMountTargetLdapIdmapToHclTerraform(struct?: FileStorageMountTargetLdapIdmapOutputReference | FileStorageMountTargetLdapIdmap): any; export declare class FileStorageMountTargetLdapIdmapOutputReference 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(): FileStorageMountTargetLdapIdmap | undefined; set internalValue(value: FileStorageMountTargetLdapIdmap | undefined); private _cacheLifetimeSeconds?; get cacheLifetimeSeconds(): number; set cacheLifetimeSeconds(value: number); resetCacheLifetimeSeconds(): void; get cacheLifetimeSecondsInput(): number | undefined; private _cacheRefreshIntervalSeconds?; get cacheRefreshIntervalSeconds(): number; set cacheRefreshIntervalSeconds(value: number); resetCacheRefreshIntervalSeconds(): void; get cacheRefreshIntervalSecondsInput(): number | undefined; private _groupSearchBase?; get groupSearchBase(): string; set groupSearchBase(value: string); resetGroupSearchBase(): void; get groupSearchBaseInput(): string | undefined; private _negativeCacheLifetimeSeconds?; get negativeCacheLifetimeSeconds(): number; set negativeCacheLifetimeSeconds(value: number); resetNegativeCacheLifetimeSeconds(): void; get negativeCacheLifetimeSecondsInput(): number | undefined; private _outboundConnector1Id?; get outboundConnector1Id(): string; set outboundConnector1Id(value: string); resetOutboundConnector1Id(): void; get outboundConnector1IdInput(): string | undefined; private _outboundConnector2Id?; get outboundConnector2Id(): string; set outboundConnector2Id(value: string); resetOutboundConnector2Id(): void; get outboundConnector2IdInput(): string | undefined; private _schemaType?; get schemaType(): string; set schemaType(value: string); resetSchemaType(): void; get schemaTypeInput(): string | undefined; private _userSearchBase?; get userSearchBase(): string; set userSearchBase(value: string); resetUserSearchBase(): void; get userSearchBaseInput(): string | undefined; } export interface FileStorageMountTargetLocks { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#message FileStorageMountTarget#message} */ readonly message?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#related_resource_id FileStorageMountTarget#related_resource_id} */ readonly relatedResourceId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#time_created FileStorageMountTarget#time_created} */ readonly timeCreated?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#type FileStorageMountTarget#type} */ readonly type: string; } export declare function fileStorageMountTargetLocksToTerraform(struct?: FileStorageMountTargetLocks | cdktf.IResolvable): any; export declare function fileStorageMountTargetLocksToHclTerraform(struct?: FileStorageMountTargetLocks | cdktf.IResolvable): any; export declare class FileStorageMountTargetLocksOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): FileStorageMountTargetLocks | cdktf.IResolvable | undefined; set internalValue(value: FileStorageMountTargetLocks | cdktf.IResolvable | undefined); private _message?; get message(): string; set message(value: string); resetMessage(): void; get messageInput(): string | undefined; private _relatedResourceId?; get relatedResourceId(): string; set relatedResourceId(value: string); resetRelatedResourceId(): void; get relatedResourceIdInput(): string | undefined; private _timeCreated?; get timeCreated(): string; set timeCreated(value: string); resetTimeCreated(): void; get timeCreatedInput(): string | undefined; private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; } export declare class FileStorageMountTargetLocksList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: FileStorageMountTargetLocks[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): FileStorageMountTargetLocksOutputReference; } export interface FileStorageMountTargetTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#create FileStorageMountTarget#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#delete FileStorageMountTarget#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#update FileStorageMountTarget#update} */ readonly update?: string; } export declare function fileStorageMountTargetTimeoutsToTerraform(struct?: FileStorageMountTargetTimeouts | cdktf.IResolvable): any; export declare function fileStorageMountTargetTimeoutsToHclTerraform(struct?: FileStorageMountTargetTimeouts | cdktf.IResolvable): any; export declare class FileStorageMountTargetTimeoutsOutputReference 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(): FileStorageMountTargetTimeouts | cdktf.IResolvable | undefined; set internalValue(value: FileStorageMountTargetTimeouts | 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 _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target oci_file_storage_mount_target} */ export declare class FileStorageMountTarget extends cdktf.TerraformResource { static readonly tfResourceType = "oci_file_storage_mount_target"; /** * Generates CDKTF code for importing a FileStorageMountTarget 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 FileStorageMountTarget to import * @param importFromId The id of the existing FileStorageMountTarget that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/file_storage_mount_target#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FileStorageMountTarget 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/oracle/oci/6.18.0/docs/resources/file_storage_mount_target oci_file_storage_mount_target} 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 FileStorageMountTargetConfig */ constructor(scope: Construct, id: string, config: FileStorageMountTargetConfig); private _availabilityDomain?; get availabilityDomain(): string; set availabilityDomain(value: string); get availabilityDomainInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; get exportSetId(): string; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _hostnameLabel?; get hostnameLabel(): string; set hostnameLabel(value: string); resetHostnameLabel(): void; get hostnameLabelInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _idmapType?; get idmapType(): string; set idmapType(value: string); resetIdmapType(): void; get idmapTypeInput(): string | undefined; private _ipAddress?; get ipAddress(): string; set ipAddress(value: string); resetIpAddress(): void; get ipAddressInput(): string | undefined; private _isLockOverride?; get isLockOverride(): boolean | cdktf.IResolvable; set isLockOverride(value: boolean | cdktf.IResolvable); resetIsLockOverride(): void; get isLockOverrideInput(): boolean | cdktf.IResolvable | undefined; get lifecycleDetails(): string; private _nsgIds?; get nsgIds(): string[]; set nsgIds(value: string[]); resetNsgIds(): void; get nsgIdsInput(): string[] | undefined; get observedThroughput(): string; get privateIpIds(): string[]; private _requestedThroughput?; get requestedThroughput(): string; set requestedThroughput(value: string); resetRequestedThroughput(): void; get requestedThroughputInput(): string | undefined; get reservedStorageCapacity(): string; get state(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string | undefined; get timeBillingCycleEnd(): string; get timeCreated(): string; private _kerberos; get kerberos(): FileStorageMountTargetKerberosOutputReference; putKerberos(value: FileStorageMountTargetKerberos): void; resetKerberos(): void; get kerberosInput(): FileStorageMountTargetKerberos | undefined; private _ldapIdmap; get ldapIdmap(): FileStorageMountTargetLdapIdmapOutputReference; putLdapIdmap(value: FileStorageMountTargetLdapIdmap): void; resetLdapIdmap(): void; get ldapIdmapInput(): FileStorageMountTargetLdapIdmap | undefined; private _locks; get locks(): FileStorageMountTargetLocksList; putLocks(value: FileStorageMountTargetLocks[] | cdktf.IResolvable): void; resetLocks(): void; get locksInput(): cdktf.IResolvable | FileStorageMountTargetLocks[] | undefined; private _timeouts; get timeouts(): FileStorageMountTargetTimeoutsOutputReference; putTimeouts(value: FileStorageMountTargetTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | FileStorageMountTargetTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }