UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

412 lines (411 loc) 22.3 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdentityDomainsCloudGateServerConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#attribute_sets IdentityDomainsCloudGateServer#attribute_sets} */ readonly attributeSets?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#attributes IdentityDomainsCloudGateServer#attributes} */ readonly attributes?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#authorization IdentityDomainsCloudGateServer#authorization} */ readonly authorization?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#description IdentityDomainsCloudGateServer#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#display_name IdentityDomainsCloudGateServer#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#host_name IdentityDomainsCloudGateServer#host_name} */ readonly hostName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#idcs_endpoint IdentityDomainsCloudGateServer#idcs_endpoint} */ readonly idcsEndpoint: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#nginx_settings IdentityDomainsCloudGateServer#nginx_settings} */ readonly nginxSettings?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#ocid IdentityDomainsCloudGateServer#ocid} */ readonly ocid?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#port IdentityDomainsCloudGateServer#port} */ readonly port: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#resource_type_schema_version IdentityDomainsCloudGateServer#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_cloud_gate_server#schemas IdentityDomainsCloudGateServer#schemas} */ readonly schemas: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#ssl IdentityDomainsCloudGateServer#ssl} */ readonly ssl: boolean | cdktf.IResolvable; /** * cloud_gate block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#cloud_gate IdentityDomainsCloudGateServer#cloud_gate} */ readonly cloudGate: IdentityDomainsCloudGateServerCloudGate; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#tags IdentityDomainsCloudGateServer#tags} */ readonly tags?: IdentityDomainsCloudGateServerTags[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#timeouts IdentityDomainsCloudGateServer#timeouts} */ readonly timeouts?: IdentityDomainsCloudGateServerTimeouts; } export interface IdentityDomainsCloudGateServerIdcsCreatedBy { } export declare function identityDomainsCloudGateServerIdcsCreatedByToTerraform(struct?: IdentityDomainsCloudGateServerIdcsCreatedBy): any; export declare function identityDomainsCloudGateServerIdcsCreatedByToHclTerraform(struct?: IdentityDomainsCloudGateServerIdcsCreatedBy): any; export declare class IdentityDomainsCloudGateServerIdcsCreatedByOutputReference 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(): IdentityDomainsCloudGateServerIdcsCreatedBy | undefined; set internalValue(value: IdentityDomainsCloudGateServerIdcsCreatedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsCloudGateServerIdcsCreatedByList 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): IdentityDomainsCloudGateServerIdcsCreatedByOutputReference; } export interface IdentityDomainsCloudGateServerIdcsLastModifiedBy { } export declare function identityDomainsCloudGateServerIdcsLastModifiedByToTerraform(struct?: IdentityDomainsCloudGateServerIdcsLastModifiedBy): any; export declare function identityDomainsCloudGateServerIdcsLastModifiedByToHclTerraform(struct?: IdentityDomainsCloudGateServerIdcsLastModifiedBy): any; export declare class IdentityDomainsCloudGateServerIdcsLastModifiedByOutputReference 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(): IdentityDomainsCloudGateServerIdcsLastModifiedBy | undefined; set internalValue(value: IdentityDomainsCloudGateServerIdcsLastModifiedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsCloudGateServerIdcsLastModifiedByList 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): IdentityDomainsCloudGateServerIdcsLastModifiedByOutputReference; } export interface IdentityDomainsCloudGateServerMeta { } export declare function identityDomainsCloudGateServerMetaToTerraform(struct?: IdentityDomainsCloudGateServerMeta): any; export declare function identityDomainsCloudGateServerMetaToHclTerraform(struct?: IdentityDomainsCloudGateServerMeta): any; export declare class IdentityDomainsCloudGateServerMetaOutputReference 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(): IdentityDomainsCloudGateServerMeta | undefined; set internalValue(value: IdentityDomainsCloudGateServerMeta | undefined); get created(): string; get lastModified(): string; get location(): string; get resourceType(): string; get version(): string; } export declare class IdentityDomainsCloudGateServerMetaList 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): IdentityDomainsCloudGateServerMetaOutputReference; } export interface IdentityDomainsCloudGateServerCloudGate { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#value IdentityDomainsCloudGateServer#value} */ readonly value: string; } export declare function identityDomainsCloudGateServerCloudGateToTerraform(struct?: IdentityDomainsCloudGateServerCloudGateOutputReference | IdentityDomainsCloudGateServerCloudGate): any; export declare function identityDomainsCloudGateServerCloudGateToHclTerraform(struct?: IdentityDomainsCloudGateServerCloudGateOutputReference | IdentityDomainsCloudGateServerCloudGate): any; export declare class IdentityDomainsCloudGateServerCloudGateOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): IdentityDomainsCloudGateServerCloudGate | undefined; set internalValue(value: IdentityDomainsCloudGateServerCloudGate | undefined); get ref(): string; private _value?; get value(): string; set value(value: string); get valueInput(): string | undefined; } export interface IdentityDomainsCloudGateServerTags { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#key IdentityDomainsCloudGateServer#key} */ readonly key: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#value IdentityDomainsCloudGateServer#value} */ readonly value: string; } export declare function identityDomainsCloudGateServerTagsToTerraform(struct?: IdentityDomainsCloudGateServerTags | cdktf.IResolvable): any; export declare function identityDomainsCloudGateServerTagsToHclTerraform(struct?: IdentityDomainsCloudGateServerTags | cdktf.IResolvable): any; export declare class IdentityDomainsCloudGateServerTagsOutputReference 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(): IdentityDomainsCloudGateServerTags | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsCloudGateServerTags | 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 IdentityDomainsCloudGateServerTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: IdentityDomainsCloudGateServerTags[] | 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): IdentityDomainsCloudGateServerTagsOutputReference; } export interface IdentityDomainsCloudGateServerTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#create IdentityDomainsCloudGateServer#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#delete IdentityDomainsCloudGateServer#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#update IdentityDomainsCloudGateServer#update} */ readonly update?: string; } export declare function identityDomainsCloudGateServerTimeoutsToTerraform(struct?: IdentityDomainsCloudGateServerTimeouts | cdktf.IResolvable): any; export declare function identityDomainsCloudGateServerTimeoutsToHclTerraform(struct?: IdentityDomainsCloudGateServerTimeouts | cdktf.IResolvable): any; export declare class IdentityDomainsCloudGateServerTimeoutsOutputReference 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(): IdentityDomainsCloudGateServerTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsCloudGateServerTimeouts | 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_cloud_gate_server oci_identity_domains_cloud_gate_server} */ export declare class IdentityDomainsCloudGateServer extends cdktf.TerraformResource { static readonly tfResourceType = "oci_identity_domains_cloud_gate_server"; /** * Generates CDKTF code for importing a IdentityDomainsCloudGateServer 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 IdentityDomainsCloudGateServer to import * @param importFromId The id of the existing IdentityDomainsCloudGateServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_cloud_gate_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdentityDomainsCloudGateServer 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_cloud_gate_server oci_identity_domains_cloud_gate_server} 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 IdentityDomainsCloudGateServerConfig */ constructor(scope: Construct, id: string, config: IdentityDomainsCloudGateServerConfig); 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; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; get domainOcid(): string; private _hostName?; get hostName(): string; set hostName(value: string); get hostNameInput(): string | undefined; get id(): string; private _idcsCreatedBy; get idcsCreatedBy(): IdentityDomainsCloudGateServerIdcsCreatedByList; private _idcsEndpoint?; get idcsEndpoint(): string; set idcsEndpoint(value: string); get idcsEndpointInput(): string | undefined; private _idcsLastModifiedBy; get idcsLastModifiedBy(): IdentityDomainsCloudGateServerIdcsLastModifiedByList; get idcsLastUpgradedInRelease(): string; get idcsPreventedOperations(): string[]; get isOpcService(): cdktf.IResolvable; private _meta; get meta(): IdentityDomainsCloudGateServerMetaList; private _nginxSettings?; get nginxSettings(): string; set nginxSettings(value: string); resetNginxSettings(): void; get nginxSettingsInput(): string | undefined; private _ocid?; get ocid(): string; set ocid(value: string); resetOcid(): void; get ocidInput(): string | undefined; private _port?; get port(): number; set port(value: number); get portInput(): number | 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; private _ssl?; get ssl(): boolean | cdktf.IResolvable; set ssl(value: boolean | cdktf.IResolvable); get sslInput(): boolean | cdktf.IResolvable | undefined; get tenancyOcid(): string; private _cloudGate; get cloudGate(): IdentityDomainsCloudGateServerCloudGateOutputReference; putCloudGate(value: IdentityDomainsCloudGateServerCloudGate): void; get cloudGateInput(): IdentityDomainsCloudGateServerCloudGate | undefined; private _tags; get tags(): IdentityDomainsCloudGateServerTagsList; putTags(value: IdentityDomainsCloudGateServerTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): cdktf.IResolvable | IdentityDomainsCloudGateServerTags[] | undefined; private _timeouts; get timeouts(): IdentityDomainsCloudGateServerTimeoutsOutputReference; putTimeouts(value: IdentityDomainsCloudGateServerTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | IdentityDomainsCloudGateServerTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }