rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
58 lines (57 loc) • 3 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDevopsRepositoryRefConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/devops_repository_ref#ref_name DataOciDevopsRepositoryRef#ref_name}
*/
readonly refName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/devops_repository_ref#repository_id DataOciDevopsRepositoryRef#repository_id}
*/
readonly repositoryId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/devops_repository_ref oci_devops_repository_ref}
*/
export declare class DataOciDevopsRepositoryRef extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_devops_repository_ref";
/**
* Generates CDKTF code for importing a DataOciDevopsRepositoryRef 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 DataOciDevopsRepositoryRef to import
* @param importFromId The id of the existing DataOciDevopsRepositoryRef that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/devops_repository_ref#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciDevopsRepositoryRef 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/devops_repository_ref oci_devops_repository_ref} 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 DataOciDevopsRepositoryRefConfig
*/
constructor(scope: Construct, id: string, config: DataOciDevopsRepositoryRefConfig);
get commitId(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get fullRefName(): string;
get id(): string;
get objectId(): string;
private _refName?;
get refName(): string;
set refName(value: string);
get refNameInput(): string | undefined;
get refType(): string;
private _repositoryId?;
get repositoryId(): string;
set repositoryId(value: string);
get repositoryIdInput(): string | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}