UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

475 lines (474 loc) 24.7 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdentityDomainsAppRoleConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#admin_role IdentityDomainsAppRole#admin_role} */ readonly adminRole?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#attribute_sets IdentityDomainsAppRole#attribute_sets} */ readonly attributeSets?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#attributes IdentityDomainsAppRole#attributes} */ readonly attributes?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#authorization IdentityDomainsAppRole#authorization} */ readonly authorization?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#available_to_clients IdentityDomainsAppRole#available_to_clients} */ readonly availableToClients?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#available_to_groups IdentityDomainsAppRole#available_to_groups} */ readonly availableToGroups?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#available_to_users IdentityDomainsAppRole#available_to_users} */ readonly availableToUsers?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#description IdentityDomainsAppRole#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#display_name IdentityDomainsAppRole#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#idcs_endpoint IdentityDomainsAppRole#idcs_endpoint} */ readonly idcsEndpoint: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#legacy_group_name IdentityDomainsAppRole#legacy_group_name} */ readonly legacyGroupName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#ocid IdentityDomainsAppRole#ocid} */ readonly ocid?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#public IdentityDomainsAppRole#public} */ readonly public?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#resource_type_schema_version IdentityDomainsAppRole#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_app_role#schemas IdentityDomainsAppRole#schemas} */ readonly schemas: string[]; /** * app block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#app IdentityDomainsAppRole#app} */ readonly app: IdentityDomainsAppRoleApp; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#tags IdentityDomainsAppRole#tags} */ readonly tags?: IdentityDomainsAppRoleTags[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#timeouts IdentityDomainsAppRole#timeouts} */ readonly timeouts?: IdentityDomainsAppRoleTimeouts; } export interface IdentityDomainsAppRoleIdcsCreatedBy { } export declare function identityDomainsAppRoleIdcsCreatedByToTerraform(struct?: IdentityDomainsAppRoleIdcsCreatedBy): any; export declare function identityDomainsAppRoleIdcsCreatedByToHclTerraform(struct?: IdentityDomainsAppRoleIdcsCreatedBy): any; export declare class IdentityDomainsAppRoleIdcsCreatedByOutputReference 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(): IdentityDomainsAppRoleIdcsCreatedBy | undefined; set internalValue(value: IdentityDomainsAppRoleIdcsCreatedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsAppRoleIdcsCreatedByList 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): IdentityDomainsAppRoleIdcsCreatedByOutputReference; } export interface IdentityDomainsAppRoleIdcsLastModifiedBy { } export declare function identityDomainsAppRoleIdcsLastModifiedByToTerraform(struct?: IdentityDomainsAppRoleIdcsLastModifiedBy): any; export declare function identityDomainsAppRoleIdcsLastModifiedByToHclTerraform(struct?: IdentityDomainsAppRoleIdcsLastModifiedBy): any; export declare class IdentityDomainsAppRoleIdcsLastModifiedByOutputReference 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(): IdentityDomainsAppRoleIdcsLastModifiedBy | undefined; set internalValue(value: IdentityDomainsAppRoleIdcsLastModifiedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsAppRoleIdcsLastModifiedByList 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): IdentityDomainsAppRoleIdcsLastModifiedByOutputReference; } export interface IdentityDomainsAppRoleMembers { } export declare function identityDomainsAppRoleMembersToTerraform(struct?: IdentityDomainsAppRoleMembers): any; export declare function identityDomainsAppRoleMembersToHclTerraform(struct?: IdentityDomainsAppRoleMembers): any; export declare class IdentityDomainsAppRoleMembersOutputReference 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(): IdentityDomainsAppRoleMembers | undefined; set internalValue(value: IdentityDomainsAppRoleMembers | undefined); get display(): string; get ref(): string; get type(): string; get value(): string; } export declare class IdentityDomainsAppRoleMembersList 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): IdentityDomainsAppRoleMembersOutputReference; } export interface IdentityDomainsAppRoleMeta { } export declare function identityDomainsAppRoleMetaToTerraform(struct?: IdentityDomainsAppRoleMeta): any; export declare function identityDomainsAppRoleMetaToHclTerraform(struct?: IdentityDomainsAppRoleMeta): any; export declare class IdentityDomainsAppRoleMetaOutputReference 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(): IdentityDomainsAppRoleMeta | undefined; set internalValue(value: IdentityDomainsAppRoleMeta | undefined); get created(): string; get lastModified(): string; get location(): string; get resourceType(): string; get version(): string; } export declare class IdentityDomainsAppRoleMetaList 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): IdentityDomainsAppRoleMetaOutputReference; } export interface IdentityDomainsAppRoleApp { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#value IdentityDomainsAppRole#value} */ readonly value: string; } export declare function identityDomainsAppRoleAppToTerraform(struct?: IdentityDomainsAppRoleAppOutputReference | IdentityDomainsAppRoleApp): any; export declare function identityDomainsAppRoleAppToHclTerraform(struct?: IdentityDomainsAppRoleAppOutputReference | IdentityDomainsAppRoleApp): any; export declare class IdentityDomainsAppRoleAppOutputReference 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(): IdentityDomainsAppRoleApp | undefined; set internalValue(value: IdentityDomainsAppRoleApp | undefined); get display(): string; get name(): string; get ref(): string; get serviceInstanceIdentifier(): string; private _value?; get value(): string; set value(value: string); get valueInput(): string | undefined; } export interface IdentityDomainsAppRoleTags { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#key IdentityDomainsAppRole#key} */ readonly key: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#value IdentityDomainsAppRole#value} */ readonly value: string; } export declare function identityDomainsAppRoleTagsToTerraform(struct?: IdentityDomainsAppRoleTags | cdktf.IResolvable): any; export declare function identityDomainsAppRoleTagsToHclTerraform(struct?: IdentityDomainsAppRoleTags | cdktf.IResolvable): any; export declare class IdentityDomainsAppRoleTagsOutputReference 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(): IdentityDomainsAppRoleTags | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsAppRoleTags | 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 IdentityDomainsAppRoleTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: IdentityDomainsAppRoleTags[] | 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): IdentityDomainsAppRoleTagsOutputReference; } export interface IdentityDomainsAppRoleTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#create IdentityDomainsAppRole#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#delete IdentityDomainsAppRole#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#update IdentityDomainsAppRole#update} */ readonly update?: string; } export declare function identityDomainsAppRoleTimeoutsToTerraform(struct?: IdentityDomainsAppRoleTimeouts | cdktf.IResolvable): any; export declare function identityDomainsAppRoleTimeoutsToHclTerraform(struct?: IdentityDomainsAppRoleTimeouts | cdktf.IResolvable): any; export declare class IdentityDomainsAppRoleTimeoutsOutputReference 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(): IdentityDomainsAppRoleTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IdentityDomainsAppRoleTimeouts | 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_app_role oci_identity_domains_app_role} */ export declare class IdentityDomainsAppRole extends cdktf.TerraformResource { static readonly tfResourceType = "oci_identity_domains_app_role"; /** * Generates CDKTF code for importing a IdentityDomainsAppRole 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 IdentityDomainsAppRole to import * @param importFromId The id of the existing IdentityDomainsAppRole that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_app_role#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdentityDomainsAppRole 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_app_role oci_identity_domains_app_role} 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 IdentityDomainsAppRoleConfig */ constructor(scope: Construct, id: string, config: IdentityDomainsAppRoleConfig); private _adminRole?; get adminRole(): boolean | cdktf.IResolvable; set adminRole(value: boolean | cdktf.IResolvable); resetAdminRole(): void; get adminRoleInput(): boolean | cdktf.IResolvable | undefined; 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; private _availableToClients?; get availableToClients(): boolean | cdktf.IResolvable; set availableToClients(value: boolean | cdktf.IResolvable); resetAvailableToClients(): void; get availableToClientsInput(): boolean | cdktf.IResolvable | undefined; private _availableToGroups?; get availableToGroups(): boolean | cdktf.IResolvable; set availableToGroups(value: boolean | cdktf.IResolvable); resetAvailableToGroups(): void; get availableToGroupsInput(): boolean | cdktf.IResolvable | undefined; private _availableToUsers?; get availableToUsers(): boolean | cdktf.IResolvable; set availableToUsers(value: boolean | cdktf.IResolvable); resetAvailableToUsers(): void; get availableToUsersInput(): boolean | cdktf.IResolvable | 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; get id(): string; private _idcsCreatedBy; get idcsCreatedBy(): IdentityDomainsAppRoleIdcsCreatedByList; private _idcsEndpoint?; get idcsEndpoint(): string; set idcsEndpoint(value: string); get idcsEndpointInput(): string | undefined; private _idcsLastModifiedBy; get idcsLastModifiedBy(): IdentityDomainsAppRoleIdcsLastModifiedByList; get idcsLastUpgradedInRelease(): string; get idcsPreventedOperations(): string[]; private _legacyGroupName?; get legacyGroupName(): string; set legacyGroupName(value: string); resetLegacyGroupName(): void; get legacyGroupNameInput(): string | undefined; get limitedToOneOrMoreGroups(): cdktf.IResolvable; get localizedDisplayName(): string; private _members; get members(): IdentityDomainsAppRoleMembersList; private _meta; get meta(): IdentityDomainsAppRoleMetaList; private _ocid?; get ocid(): string; set ocid(value: string); resetOcid(): void; get ocidInput(): string | undefined; private _public?; get public(): boolean | cdktf.IResolvable; set public(value: boolean | cdktf.IResolvable); resetPublic(): void; get publicInput(): boolean | cdktf.IResolvable | 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; get uniqueName(): string; private _app; get app(): IdentityDomainsAppRoleAppOutputReference; putApp(value: IdentityDomainsAppRoleApp): void; get appInput(): IdentityDomainsAppRoleApp | undefined; private _tags; get tags(): IdentityDomainsAppRoleTagsList; putTags(value: IdentityDomainsAppRoleTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): cdktf.IResolvable | IdentityDomainsAppRoleTags[] | undefined; private _timeouts; get timeouts(): IdentityDomainsAppRoleTimeoutsOutputReference; putTimeouts(value: IdentityDomainsAppRoleTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | IdentityDomainsAppRoleTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }