UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

130 lines (129 loc) 6.27 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciCorePublicIpConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#id DataOciCorePublicIp#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/data-sources/core_public_ip#ip_address DataOciCorePublicIp#ip_address} */ readonly ipAddress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#private_ip_id DataOciCorePublicIp#private_ip_id} */ readonly privateIpId?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#timeouts DataOciCorePublicIp#timeouts} */ readonly timeouts?: DataOciCorePublicIpTimeouts; } export interface DataOciCorePublicIpTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#create DataOciCorePublicIp#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#delete DataOciCorePublicIp#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#update DataOciCorePublicIp#update} */ readonly update?: string; } export declare function dataOciCorePublicIpTimeoutsToTerraform(struct?: DataOciCorePublicIpTimeouts | cdktf.IResolvable): any; export declare function dataOciCorePublicIpTimeoutsToHclTerraform(struct?: DataOciCorePublicIpTimeouts | cdktf.IResolvable): any; export declare class DataOciCorePublicIpTimeoutsOutputReference 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(): DataOciCorePublicIpTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DataOciCorePublicIpTimeouts | 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/data-sources/core_public_ip oci_core_public_ip} */ export declare class DataOciCorePublicIp extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_core_public_ip"; /** * Generates CDKTF code for importing a DataOciCorePublicIp 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 DataOciCorePublicIp to import * @param importFromId The id of the existing DataOciCorePublicIp that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_public_ip#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciCorePublicIp 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/data-sources/core_public_ip oci_core_public_ip} Data Source * * @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 DataOciCorePublicIpConfig = {} */ constructor(scope: Construct, id: string, config?: DataOciCorePublicIpConfig); get assignedEntityId(): string; get assignedEntityType(): string; get availabilityDomain(): string; get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _ipAddress?; get ipAddress(): string; set ipAddress(value: string); resetIpAddress(): void; get ipAddressInput(): string | undefined; get lifetime(): string; private _privateIpId?; get privateIpId(): string; set privateIpId(value: string); resetPrivateIpId(): void; get privateIpIdInput(): string | undefined; get publicIpPoolId(): string; get scope(): string; get state(): string; get timeCreated(): string; private _timeouts; get timeouts(): DataOciCorePublicIpTimeoutsOutputReference; putTimeouts(value: DataOciCorePublicIpTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DataOciCorePublicIpTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }