UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

160 lines (159 loc) 9.24 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciFunctionsApplicationConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/functions_application#application_id DataOciFunctionsApplication#application_id} */ readonly applicationId: string; } export interface DataOciFunctionsApplicationImagePolicyConfigKeyDetails { } export declare function dataOciFunctionsApplicationImagePolicyConfigKeyDetailsToTerraform(struct?: DataOciFunctionsApplicationImagePolicyConfigKeyDetails): any; export declare function dataOciFunctionsApplicationImagePolicyConfigKeyDetailsToHclTerraform(struct?: DataOciFunctionsApplicationImagePolicyConfigKeyDetails): any; export declare class DataOciFunctionsApplicationImagePolicyConfigKeyDetailsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataOciFunctionsApplicationImagePolicyConfigKeyDetails | undefined; set internalValue(value: DataOciFunctionsApplicationImagePolicyConfigKeyDetails | undefined); get kmsKeyId(): string; } export declare class DataOciFunctionsApplicationImagePolicyConfigKeyDetailsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataOciFunctionsApplicationImagePolicyConfigKeyDetailsOutputReference; } export interface DataOciFunctionsApplicationImagePolicyConfig { } export declare function dataOciFunctionsApplicationImagePolicyConfigToTerraform(struct?: DataOciFunctionsApplicationImagePolicyConfig): any; export declare function dataOciFunctionsApplicationImagePolicyConfigToHclTerraform(struct?: DataOciFunctionsApplicationImagePolicyConfig): any; export declare class DataOciFunctionsApplicationImagePolicyConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataOciFunctionsApplicationImagePolicyConfig | undefined; set internalValue(value: DataOciFunctionsApplicationImagePolicyConfig | undefined); get isPolicyEnabled(): cdktf.IResolvable; private _keyDetails; get keyDetails(): DataOciFunctionsApplicationImagePolicyConfigKeyDetailsList; } export declare class DataOciFunctionsApplicationImagePolicyConfigList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataOciFunctionsApplicationImagePolicyConfigOutputReference; } export interface DataOciFunctionsApplicationTraceConfig { } export declare function dataOciFunctionsApplicationTraceConfigToTerraform(struct?: DataOciFunctionsApplicationTraceConfig): any; export declare function dataOciFunctionsApplicationTraceConfigToHclTerraform(struct?: DataOciFunctionsApplicationTraceConfig): any; export declare class DataOciFunctionsApplicationTraceConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataOciFunctionsApplicationTraceConfig | undefined; set internalValue(value: DataOciFunctionsApplicationTraceConfig | undefined); get domainId(): string; get isEnabled(): cdktf.IResolvable; } export declare class DataOciFunctionsApplicationTraceConfigList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataOciFunctionsApplicationTraceConfigOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/functions_application oci_functions_application} */ export declare class DataOciFunctionsApplication extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_functions_application"; /** * Generates CDKTF code for importing a DataOciFunctionsApplication 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 DataOciFunctionsApplication to import * @param importFromId The id of the existing DataOciFunctionsApplication that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/functions_application#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciFunctionsApplication 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/functions_application oci_functions_application} 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 DataOciFunctionsApplicationConfig */ constructor(scope: Construct, id: string, config: DataOciFunctionsApplicationConfig); private _applicationId?; get applicationId(): string; set applicationId(value: string); get applicationIdInput(): string | undefined; get compartmentId(): string; private _config; get config(): cdktf.StringMap; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; private _imagePolicyConfig; get imagePolicyConfig(): DataOciFunctionsApplicationImagePolicyConfigList; get networkSecurityGroupIds(): string[]; get shape(): string; get state(): string; get subnetIds(): string[]; get syslogUrl(): string; get timeCreated(): string; get timeUpdated(): string; private _traceConfig; get traceConfig(): DataOciFunctionsApplicationTraceConfigList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }