rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
374 lines (373 loc) • 19.2 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface IdentityDomainsMyApiKeyConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#authorization IdentityDomainsMyApiKey#authorization}
*/
readonly authorization?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#description IdentityDomainsMyApiKey#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#idcs_endpoint IdentityDomainsMyApiKey#idcs_endpoint}
*/
readonly idcsEndpoint: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#key IdentityDomainsMyApiKey#key}
*/
readonly key: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#ocid IdentityDomainsMyApiKey#ocid}
*/
readonly ocid?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#resource_type_schema_version IdentityDomainsMyApiKey#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_my_api_key#schemas IdentityDomainsMyApiKey#schemas}
*/
readonly schemas: string[];
/**
* tags block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#tags IdentityDomainsMyApiKey#tags}
*/
readonly tags?: IdentityDomainsMyApiKeyTags[] | cdktf.IResolvable;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#timeouts IdentityDomainsMyApiKey#timeouts}
*/
readonly timeouts?: IdentityDomainsMyApiKeyTimeouts;
/**
* user block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#user IdentityDomainsMyApiKey#user}
*/
readonly user?: IdentityDomainsMyApiKeyUser;
}
export interface IdentityDomainsMyApiKeyIdcsCreatedBy {
}
export declare function identityDomainsMyApiKeyIdcsCreatedByToTerraform(struct?: IdentityDomainsMyApiKeyIdcsCreatedBy): any;
export declare function identityDomainsMyApiKeyIdcsCreatedByToHclTerraform(struct?: IdentityDomainsMyApiKeyIdcsCreatedBy): any;
export declare class IdentityDomainsMyApiKeyIdcsCreatedByOutputReference 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(): IdentityDomainsMyApiKeyIdcsCreatedBy | undefined;
set internalValue(value: IdentityDomainsMyApiKeyIdcsCreatedBy | undefined);
get display(): string;
get ocid(): string;
get ref(): string;
get type(): string;
get value(): string;
}
export declare class IdentityDomainsMyApiKeyIdcsCreatedByList 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): IdentityDomainsMyApiKeyIdcsCreatedByOutputReference;
}
export interface IdentityDomainsMyApiKeyIdcsLastModifiedBy {
}
export declare function identityDomainsMyApiKeyIdcsLastModifiedByToTerraform(struct?: IdentityDomainsMyApiKeyIdcsLastModifiedBy): any;
export declare function identityDomainsMyApiKeyIdcsLastModifiedByToHclTerraform(struct?: IdentityDomainsMyApiKeyIdcsLastModifiedBy): any;
export declare class IdentityDomainsMyApiKeyIdcsLastModifiedByOutputReference 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(): IdentityDomainsMyApiKeyIdcsLastModifiedBy | undefined;
set internalValue(value: IdentityDomainsMyApiKeyIdcsLastModifiedBy | undefined);
get display(): string;
get ocid(): string;
get ref(): string;
get type(): string;
get value(): string;
}
export declare class IdentityDomainsMyApiKeyIdcsLastModifiedByList 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): IdentityDomainsMyApiKeyIdcsLastModifiedByOutputReference;
}
export interface IdentityDomainsMyApiKeyMeta {
}
export declare function identityDomainsMyApiKeyMetaToTerraform(struct?: IdentityDomainsMyApiKeyMeta): any;
export declare function identityDomainsMyApiKeyMetaToHclTerraform(struct?: IdentityDomainsMyApiKeyMeta): any;
export declare class IdentityDomainsMyApiKeyMetaOutputReference 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(): IdentityDomainsMyApiKeyMeta | undefined;
set internalValue(value: IdentityDomainsMyApiKeyMeta | undefined);
get created(): string;
get lastModified(): string;
get location(): string;
get resourceType(): string;
get version(): string;
}
export declare class IdentityDomainsMyApiKeyMetaList 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): IdentityDomainsMyApiKeyMetaOutputReference;
}
export interface IdentityDomainsMyApiKeyTags {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#key IdentityDomainsMyApiKey#key}
*/
readonly key: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#value IdentityDomainsMyApiKey#value}
*/
readonly value: string;
}
export declare function identityDomainsMyApiKeyTagsToTerraform(struct?: IdentityDomainsMyApiKeyTags | cdktf.IResolvable): any;
export declare function identityDomainsMyApiKeyTagsToHclTerraform(struct?: IdentityDomainsMyApiKeyTags | cdktf.IResolvable): any;
export declare class IdentityDomainsMyApiKeyTagsOutputReference 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(): IdentityDomainsMyApiKeyTags | cdktf.IResolvable | undefined;
set internalValue(value: IdentityDomainsMyApiKeyTags | 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 IdentityDomainsMyApiKeyTagsList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: IdentityDomainsMyApiKeyTags[] | 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): IdentityDomainsMyApiKeyTagsOutputReference;
}
export interface IdentityDomainsMyApiKeyTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#create IdentityDomainsMyApiKey#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#delete IdentityDomainsMyApiKey#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#update IdentityDomainsMyApiKey#update}
*/
readonly update?: string;
}
export declare function identityDomainsMyApiKeyTimeoutsToTerraform(struct?: IdentityDomainsMyApiKeyTimeouts | cdktf.IResolvable): any;
export declare function identityDomainsMyApiKeyTimeoutsToHclTerraform(struct?: IdentityDomainsMyApiKeyTimeouts | cdktf.IResolvable): any;
export declare class IdentityDomainsMyApiKeyTimeoutsOutputReference 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(): IdentityDomainsMyApiKeyTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: IdentityDomainsMyApiKeyTimeouts | 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;
}
export interface IdentityDomainsMyApiKeyUser {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#ocid IdentityDomainsMyApiKey#ocid}
*/
readonly ocid?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#value IdentityDomainsMyApiKey#value}
*/
readonly value?: string;
}
export declare function identityDomainsMyApiKeyUserToTerraform(struct?: IdentityDomainsMyApiKeyUserOutputReference | IdentityDomainsMyApiKeyUser): any;
export declare function identityDomainsMyApiKeyUserToHclTerraform(struct?: IdentityDomainsMyApiKeyUserOutputReference | IdentityDomainsMyApiKeyUser): any;
export declare class IdentityDomainsMyApiKeyUserOutputReference 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(): IdentityDomainsMyApiKeyUser | undefined;
set internalValue(value: IdentityDomainsMyApiKeyUser | undefined);
get display(): string;
get name(): string;
private _ocid?;
get ocid(): string;
set ocid(value: string);
resetOcid(): void;
get ocidInput(): string | undefined;
get ref(): string;
private _value?;
get value(): string;
set value(value: string);
resetValue(): void;
get valueInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key oci_identity_domains_my_api_key}
*/
export declare class IdentityDomainsMyApiKey extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_identity_domains_my_api_key";
/**
* Generates CDKTF code for importing a IdentityDomainsMyApiKey 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 IdentityDomainsMyApiKey to import
* @param importFromId The id of the existing IdentityDomainsMyApiKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/identity_domains_my_api_key#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the IdentityDomainsMyApiKey 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_my_api_key oci_identity_domains_my_api_key} 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 IdentityDomainsMyApiKeyConfig
*/
constructor(scope: Construct, id: string, config: IdentityDomainsMyApiKeyConfig);
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;
get fingerprint(): string;
get id(): string;
private _idcsCreatedBy;
get idcsCreatedBy(): IdentityDomainsMyApiKeyIdcsCreatedByList;
private _idcsEndpoint?;
get idcsEndpoint(): string;
set idcsEndpoint(value: string);
get idcsEndpointInput(): string | undefined;
private _idcsLastModifiedBy;
get idcsLastModifiedBy(): IdentityDomainsMyApiKeyIdcsLastModifiedByList;
get idcsLastUpgradedInRelease(): string;
get idcsPreventedOperations(): string[];
private _key?;
get key(): string;
set key(value: string);
get keyInput(): string | undefined;
private _meta;
get meta(): IdentityDomainsMyApiKeyMetaList;
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 _tags;
get tags(): IdentityDomainsMyApiKeyTagsList;
putTags(value: IdentityDomainsMyApiKeyTags[] | cdktf.IResolvable): void;
resetTags(): void;
get tagsInput(): cdktf.IResolvable | IdentityDomainsMyApiKeyTags[] | undefined;
private _timeouts;
get timeouts(): IdentityDomainsMyApiKeyTimeoutsOutputReference;
putTimeouts(value: IdentityDomainsMyApiKeyTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | IdentityDomainsMyApiKeyTimeouts | undefined;
private _user;
get user(): IdentityDomainsMyApiKeyUserOutputReference;
putUser(value: IdentityDomainsMyApiKeyUser): void;
resetUser(): void;
get userInput(): IdentityDomainsMyApiKeyUser | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}