UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

174 lines (173 loc) 10.2 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciFleetAppsManagementFleetCredentialConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_credential#fleet_credential_id DataOciFleetAppsManagementFleetCredential#fleet_credential_id} */ readonly fleetCredentialId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_credential#fleet_id DataOciFleetAppsManagementFleetCredential#fleet_id} */ readonly fleetId: string; } export interface DataOciFleetAppsManagementFleetCredentialEntitySpecifics { } export declare function dataOciFleetAppsManagementFleetCredentialEntitySpecificsToTerraform(struct?: DataOciFleetAppsManagementFleetCredentialEntitySpecifics): any; export declare function dataOciFleetAppsManagementFleetCredentialEntitySpecificsToHclTerraform(struct?: DataOciFleetAppsManagementFleetCredentialEntitySpecifics): any; export declare class DataOciFleetAppsManagementFleetCredentialEntitySpecificsOutputReference 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(): DataOciFleetAppsManagementFleetCredentialEntitySpecifics | undefined; set internalValue(value: DataOciFleetAppsManagementFleetCredentialEntitySpecifics | undefined); get credentialLevel(): string; get resourceId(): string; get target(): string; } export declare class DataOciFleetAppsManagementFleetCredentialEntitySpecificsList 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): DataOciFleetAppsManagementFleetCredentialEntitySpecificsOutputReference; } export interface DataOciFleetAppsManagementFleetCredentialPassword { } export declare function dataOciFleetAppsManagementFleetCredentialPasswordToTerraform(struct?: DataOciFleetAppsManagementFleetCredentialPassword): any; export declare function dataOciFleetAppsManagementFleetCredentialPasswordToHclTerraform(struct?: DataOciFleetAppsManagementFleetCredentialPassword): any; export declare class DataOciFleetAppsManagementFleetCredentialPasswordOutputReference 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(): DataOciFleetAppsManagementFleetCredentialPassword | undefined; set internalValue(value: DataOciFleetAppsManagementFleetCredentialPassword | undefined); get credentialType(): string; get keyId(): string; get keyVersion(): string; get secretId(): string; get secretVersion(): string; get value(): string; get vaultId(): string; } export declare class DataOciFleetAppsManagementFleetCredentialPasswordList 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): DataOciFleetAppsManagementFleetCredentialPasswordOutputReference; } export interface DataOciFleetAppsManagementFleetCredentialUser { } export declare function dataOciFleetAppsManagementFleetCredentialUserToTerraform(struct?: DataOciFleetAppsManagementFleetCredentialUser): any; export declare function dataOciFleetAppsManagementFleetCredentialUserToHclTerraform(struct?: DataOciFleetAppsManagementFleetCredentialUser): any; export declare class DataOciFleetAppsManagementFleetCredentialUserOutputReference 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(): DataOciFleetAppsManagementFleetCredentialUser | undefined; set internalValue(value: DataOciFleetAppsManagementFleetCredentialUser | undefined); get credentialType(): string; get keyId(): string; get keyVersion(): string; get secretId(): string; get secretVersion(): string; get value(): string; get vaultId(): string; } export declare class DataOciFleetAppsManagementFleetCredentialUserList 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): DataOciFleetAppsManagementFleetCredentialUserOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_credential oci_fleet_apps_management_fleet_credential} */ export declare class DataOciFleetAppsManagementFleetCredential extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_fleet_apps_management_fleet_credential"; /** * Generates CDKTF code for importing a DataOciFleetAppsManagementFleetCredential 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 DataOciFleetAppsManagementFleetCredential to import * @param importFromId The id of the existing DataOciFleetAppsManagementFleetCredential that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_credential#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciFleetAppsManagementFleetCredential 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/fleet_apps_management_fleet_credential oci_fleet_apps_management_fleet_credential} 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 DataOciFleetAppsManagementFleetCredentialConfig */ constructor(scope: Construct, id: string, config: DataOciFleetAppsManagementFleetCredentialConfig); get compartmentId(): string; get displayName(): string; private _entitySpecifics; get entitySpecifics(): DataOciFleetAppsManagementFleetCredentialEntitySpecificsList; private _fleetCredentialId?; get fleetCredentialId(): string; set fleetCredentialId(value: string); get fleetCredentialIdInput(): string | undefined; private _fleetId?; get fleetId(): string; set fleetId(value: string); get fleetIdInput(): string | undefined; get id(): string; get lifecycleDetails(): string; private _password; get password(): DataOciFleetAppsManagementFleetCredentialPasswordList; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; private _user; get user(): DataOciFleetAppsManagementFleetCredentialUserList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }