UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

423 lines (422 loc) 23.1 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdentityDomainsNetworkPerimeterConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#attribute_sets IdentityDomainsNetworkPerimeter#attribute_sets} */ readonly attributeSets?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#attributes IdentityDomainsNetworkPerimeter#attributes} */ readonly attributes?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#authorization IdentityDomainsNetworkPerimeter#authorization} */ readonly authorization?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#description IdentityDomainsNetworkPerimeter#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#external_id IdentityDomainsNetworkPerimeter#external_id} */ readonly externalId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#idcs_endpoint IdentityDomainsNetworkPerimeter#idcs_endpoint} */ readonly idcsEndpoint: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#name IdentityDomainsNetworkPerimeter#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#ocid IdentityDomainsNetworkPerimeter#ocid} */ readonly ocid?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#resource_type_schema_version IdentityDomainsNetworkPerimeter#resource_type_schema_version} */ readonly resourceTypeSchemaVersion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#schemas IdentityDomainsNetworkPerimeter#schemas} */ readonly schemas: string[]; /** * ip_addresses block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#ip_addresses IdentityDomainsNetworkPerimeter#ip_addresses} */ readonly ipAddresses: IdentityDomainsNetworkPerimeterIpAddresses[] | cdktf.IResolvable; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#tags IdentityDomainsNetworkPerimeter#tags} */ readonly tags?: IdentityDomainsNetworkPerimeterTags[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#timeouts IdentityDomainsNetworkPerimeter#timeouts} */ readonly timeouts?: IdentityDomainsNetworkPerimeterTimeouts; } export interface IdentityDomainsNetworkPerimeterIdcsCreatedBy { } export declare function identityDomainsNetworkPerimeterIdcsCreatedByToTerraform(struct?: IdentityDomainsNetworkPerimeterIdcsCreatedBy): any; export declare function identityDomainsNetworkPerimeterIdcsCreatedByToHclTerraform(struct?: IdentityDomainsNetworkPerimeterIdcsCreatedBy): any; export declare class IdentityDomainsNetworkPerimeterIdcsCreatedByOutputReference 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(): IdentityDomainsNetworkPerimeterIdcsCreatedBy | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterIdcsCreatedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsNetworkPerimeterIdcsCreatedByList 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): IdentityDomainsNetworkPerimeterIdcsCreatedByOutputReference; } export interface IdentityDomainsNetworkPerimeterIdcsLastModifiedBy { } export declare function identityDomainsNetworkPerimeterIdcsLastModifiedByToTerraform(struct?: IdentityDomainsNetworkPerimeterIdcsLastModifiedBy): any; export declare function identityDomainsNetworkPerimeterIdcsLastModifiedByToHclTerraform(struct?: IdentityDomainsNetworkPerimeterIdcsLastModifiedBy): any; export declare class IdentityDomainsNetworkPerimeterIdcsLastModifiedByOutputReference 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(): IdentityDomainsNetworkPerimeterIdcsLastModifiedBy | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterIdcsLastModifiedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsNetworkPerimeterIdcsLastModifiedByList 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): IdentityDomainsNetworkPerimeterIdcsLastModifiedByOutputReference; } export interface IdentityDomainsNetworkPerimeterMeta { } export declare function identityDomainsNetworkPerimeterMetaToTerraform(struct?: IdentityDomainsNetworkPerimeterMeta): any; export declare function identityDomainsNetworkPerimeterMetaToHclTerraform(struct?: IdentityDomainsNetworkPerimeterMeta): any; export declare class IdentityDomainsNetworkPerimeterMetaOutputReference 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(): IdentityDomainsNetworkPerimeterMeta | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterMeta | undefined); get created(): string; get lastModified(): string; get location(): string; get resourceType(): string; get version(): string; } export declare class IdentityDomainsNetworkPerimeterMetaList 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): IdentityDomainsNetworkPerimeterMetaOutputReference; } export interface IdentityDomainsNetworkPerimeterIpAddresses { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#type IdentityDomainsNetworkPerimeter#type} */ readonly type?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#value IdentityDomainsNetworkPerimeter#value} */ readonly value: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#version IdentityDomainsNetworkPerimeter#version} */ readonly version?: string; } export declare function identityDomainsNetworkPerimeterIpAddressesToTerraform(struct?: IdentityDomainsNetworkPerimeterIpAddresses | cdktf.IResolvable): any; export declare function identityDomainsNetworkPerimeterIpAddressesToHclTerraform(struct?: IdentityDomainsNetworkPerimeterIpAddresses | cdktf.IResolvable): any; export declare class IdentityDomainsNetworkPerimeterIpAddressesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): IdentityDomainsNetworkPerimeterIpAddresses | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterIpAddresses | cdktf.IResolvable | undefined); private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string | undefined; private _value?; get value(): string; set value(value: string); get valueInput(): string | undefined; private _version?; get version(): string; set version(value: string); resetVersion(): void; get versionInput(): string | undefined; } export declare class IdentityDomainsNetworkPerimeterIpAddressesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: IdentityDomainsNetworkPerimeterIpAddresses[] | cdktf.IResolvable; /** * @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): IdentityDomainsNetworkPerimeterIpAddressesOutputReference; } export interface IdentityDomainsNetworkPerimeterTags { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#key IdentityDomainsNetworkPerimeter#key} */ readonly key: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#value IdentityDomainsNetworkPerimeter#value} */ readonly value: string; } export declare function identityDomainsNetworkPerimeterTagsToTerraform(struct?: IdentityDomainsNetworkPerimeterTags | cdktf.IResolvable): any; export declare function identityDomainsNetworkPerimeterTagsToHclTerraform(struct?: IdentityDomainsNetworkPerimeterTags | cdktf.IResolvable): any; export declare class IdentityDomainsNetworkPerimeterTagsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): IdentityDomainsNetworkPerimeterTags | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterTags | cdktf.IResolvable | undefined); private _key?; get key(): string; set key(value: string); get keyInput(): string | undefined; private _value?; get value(): string; set value(value: string); get valueInput(): string | undefined; } export declare class IdentityDomainsNetworkPerimeterTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: IdentityDomainsNetworkPerimeterTags[] | cdktf.IResolvable; /** * @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): IdentityDomainsNetworkPerimeterTagsOutputReference; } export interface IdentityDomainsNetworkPerimeterTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#create IdentityDomainsNetworkPerimeter#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#delete IdentityDomainsNetworkPerimeter#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#update IdentityDomainsNetworkPerimeter#update} */ readonly update?: string; } export declare function identityDomainsNetworkPerimeterTimeoutsToTerraform(struct?: IdentityDomainsNetworkPerimeterTimeouts | cdktf.IResolvable): any; export declare function identityDomainsNetworkPerimeterTimeoutsToHclTerraform(struct?: IdentityDomainsNetworkPerimeterTimeouts | cdktf.IResolvable): any; export declare class IdentityDomainsNetworkPerimeterTimeoutsOutputReference 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(): IdentityDomainsNetworkPerimeterTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsNetworkPerimeterTimeouts | 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/resources/identity_domains_network_perimeter oci_identity_domains_network_perimeter} */ export declare class IdentityDomainsNetworkPerimeter extends cdktf.TerraformResource { static readonly tfResourceType = "oci_identity_domains_network_perimeter"; /** * Generates CDKTF code for importing a IdentityDomainsNetworkPerimeter 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 IdentityDomainsNetworkPerimeter to import * @param importFromId The id of the existing IdentityDomainsNetworkPerimeter that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_network_perimeter#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdentityDomainsNetworkPerimeter 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/resources/identity_domains_network_perimeter oci_identity_domains_network_perimeter} Resource * * @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 IdentityDomainsNetworkPerimeterConfig */ constructor(scope: Construct, id: string, config: IdentityDomainsNetworkPerimeterConfig); private _attributeSets?; get attributeSets(): string[]; set attributeSets(value: string[]); resetAttributeSets(): void; get attributeSetsInput(): string[] | undefined; private _attributes?; get attributes(): string; set attributes(value: string); resetAttributes(): void; get attributesInput(): string | undefined; private _authorization?; get authorization(): string; set authorization(value: string); resetAuthorization(): void; get authorizationInput(): string | undefined; get compartmentOcid(): string; get deleteInProgress(): cdktf.IResolvable; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; get domainOcid(): string; private _externalId?; get externalId(): string; set externalId(value: string); resetExternalId(): void; get externalIdInput(): string | undefined; get id(): string; private _idcsCreatedBy; get idcsCreatedBy(): IdentityDomainsNetworkPerimeterIdcsCreatedByList; private _idcsEndpoint?; get idcsEndpoint(): string; set idcsEndpoint(value: string); get idcsEndpointInput(): string | undefined; private _idcsLastModifiedBy; get idcsLastModifiedBy(): IdentityDomainsNetworkPerimeterIdcsLastModifiedByList; get idcsLastUpgradedInRelease(): string; get idcsPreventedOperations(): string[]; private _meta; get meta(): IdentityDomainsNetworkPerimeterMetaList; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _ocid?; get ocid(): string; set ocid(value: string); resetOcid(): void; get ocidInput(): string | undefined; private _resourceTypeSchemaVersion?; get resourceTypeSchemaVersion(): string; set resourceTypeSchemaVersion(value: string); resetResourceTypeSchemaVersion(): void; get resourceTypeSchemaVersionInput(): string | undefined; private _schemas?; get schemas(): string[]; set schemas(value: string[]); get schemasInput(): string[] | undefined; get tenancyOcid(): string; private _ipAddresses; get ipAddresses(): IdentityDomainsNetworkPerimeterIpAddressesList; putIpAddresses(value: IdentityDomainsNetworkPerimeterIpAddresses[] | cdktf.IResolvable): void; get ipAddressesInput(): cdktf.IResolvable | IdentityDomainsNetworkPerimeterIpAddresses[] | undefined; private _tags; get tags(): IdentityDomainsNetworkPerimeterTagsList; putTags(value: IdentityDomainsNetworkPerimeterTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): cdktf.IResolvable | IdentityDomainsNetworkPerimeterTags[] | undefined; private _timeouts; get timeouts(): IdentityDomainsNetworkPerimeterTimeoutsOutputReference; putTimeouts(value: IdentityDomainsNetworkPerimeterTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | IdentityDomainsNetworkPerimeterTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }