rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
95 lines (94 loc) • 4.54 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciOspGatewayAddressConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/osp_gateway_address#address_id DataOciOspGatewayAddress#address_id}
*/
readonly addressId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/osp_gateway_address#compartment_id DataOciOspGatewayAddress#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/osp_gateway_address#id DataOciOspGatewayAddress#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/osp_gateway_address#osp_home_region DataOciOspGatewayAddress#osp_home_region}
*/
readonly ospHomeRegion: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/osp_gateway_address oci_osp_gateway_address}
*/
export declare class DataOciOspGatewayAddress extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_osp_gateway_address";
/**
* Generates CDKTF code for importing a DataOciOspGatewayAddress 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 DataOciOspGatewayAddress to import
* @param importFromId The id of the existing DataOciOspGatewayAddress that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/osp_gateway_address#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciOspGatewayAddress 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/osp_gateway_address oci_osp_gateway_address} 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 DataOciOspGatewayAddressConfig
*/
constructor(scope: Construct, id: string, config: DataOciOspGatewayAddressConfig);
private _addressId?;
get addressId(): string;
set addressId(value: string);
get addressIdInput(): string | undefined;
get addressKey(): string;
get city(): string;
get companyName(): string;
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
get compartmentIdInput(): string | undefined;
get contributorClass(): string;
get country(): string;
get county(): string;
get departmentName(): string;
get emailAddress(): string;
get firstName(): string;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get internalNumber(): string;
get jobTitle(): string;
get lastName(): string;
get line1(): string;
get line2(): string;
get line3(): string;
get line4(): string;
get middleName(): string;
get municipalInscription(): string;
private _ospHomeRegion?;
get ospHomeRegion(): string;
set ospHomeRegion(value: string);
get ospHomeRegionInput(): string | undefined;
get phoneCountryCode(): string;
get phoneNumber(): string;
get postalCode(): string;
get province(): string;
get state(): string;
get stateInscription(): string;
get streetName(): string;
get streetNumber(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}