rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
318 lines (317 loc) • 18 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciIdentityDomainsApiKeyConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#api_key_id DataOciIdentityDomainsApiKey#api_key_id}
*/
readonly apiKeyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#attribute_sets DataOciIdentityDomainsApiKey#attribute_sets}
*/
readonly attributeSets?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#attributes DataOciIdentityDomainsApiKey#attributes}
*/
readonly attributes?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#authorization DataOciIdentityDomainsApiKey#authorization}
*/
readonly authorization?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#idcs_endpoint DataOciIdentityDomainsApiKey#idcs_endpoint}
*/
readonly idcsEndpoint: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key#resource_type_schema_version DataOciIdentityDomainsApiKey#resource_type_schema_version}
*/
readonly resourceTypeSchemaVersion?: string;
}
export interface DataOciIdentityDomainsApiKeyIdcsCreatedBy {
}
export declare function dataOciIdentityDomainsApiKeyIdcsCreatedByToTerraform(struct?: DataOciIdentityDomainsApiKeyIdcsCreatedBy): any;
export declare function dataOciIdentityDomainsApiKeyIdcsCreatedByToHclTerraform(struct?: DataOciIdentityDomainsApiKeyIdcsCreatedBy): any;
export declare class DataOciIdentityDomainsApiKeyIdcsCreatedByOutputReference 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(): DataOciIdentityDomainsApiKeyIdcsCreatedBy | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyIdcsCreatedBy | undefined);
get display(): string;
get ocid(): string;
get ref(): string;
get type(): string;
get value(): string;
}
export declare class DataOciIdentityDomainsApiKeyIdcsCreatedByList 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): DataOciIdentityDomainsApiKeyIdcsCreatedByOutputReference;
}
export interface DataOciIdentityDomainsApiKeyIdcsLastModifiedBy {
}
export declare function dataOciIdentityDomainsApiKeyIdcsLastModifiedByToTerraform(struct?: DataOciIdentityDomainsApiKeyIdcsLastModifiedBy): any;
export declare function dataOciIdentityDomainsApiKeyIdcsLastModifiedByToHclTerraform(struct?: DataOciIdentityDomainsApiKeyIdcsLastModifiedBy): any;
export declare class DataOciIdentityDomainsApiKeyIdcsLastModifiedByOutputReference 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(): DataOciIdentityDomainsApiKeyIdcsLastModifiedBy | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyIdcsLastModifiedBy | undefined);
get display(): string;
get ocid(): string;
get ref(): string;
get type(): string;
get value(): string;
}
export declare class DataOciIdentityDomainsApiKeyIdcsLastModifiedByList 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): DataOciIdentityDomainsApiKeyIdcsLastModifiedByOutputReference;
}
export interface DataOciIdentityDomainsApiKeyMeta {
}
export declare function dataOciIdentityDomainsApiKeyMetaToTerraform(struct?: DataOciIdentityDomainsApiKeyMeta): any;
export declare function dataOciIdentityDomainsApiKeyMetaToHclTerraform(struct?: DataOciIdentityDomainsApiKeyMeta): any;
export declare class DataOciIdentityDomainsApiKeyMetaOutputReference 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(): DataOciIdentityDomainsApiKeyMeta | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyMeta | undefined);
get created(): string;
get lastModified(): string;
get location(): string;
get resourceType(): string;
get version(): string;
}
export declare class DataOciIdentityDomainsApiKeyMetaList 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): DataOciIdentityDomainsApiKeyMetaOutputReference;
}
export interface DataOciIdentityDomainsApiKeyTags {
}
export declare function dataOciIdentityDomainsApiKeyTagsToTerraform(struct?: DataOciIdentityDomainsApiKeyTags): any;
export declare function dataOciIdentityDomainsApiKeyTagsToHclTerraform(struct?: DataOciIdentityDomainsApiKeyTags): any;
export declare class DataOciIdentityDomainsApiKeyTagsOutputReference 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(): DataOciIdentityDomainsApiKeyTags | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyTags | undefined);
get key(): string;
get value(): string;
}
export declare class DataOciIdentityDomainsApiKeyTagsList 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): DataOciIdentityDomainsApiKeyTagsOutputReference;
}
export interface DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser {
}
export declare function dataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserToTerraform(struct?: DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser): any;
export declare function dataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserToHclTerraform(struct?: DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser): any;
export declare class DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserOutputReference 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(): DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser | undefined);
get allowSelfChange(): cdktf.IResolvable;
}
export declare class DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserList 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): DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserOutputReference;
}
export interface DataOciIdentityDomainsApiKeyUser {
}
export declare function dataOciIdentityDomainsApiKeyUserToTerraform(struct?: DataOciIdentityDomainsApiKeyUser): any;
export declare function dataOciIdentityDomainsApiKeyUserToHclTerraform(struct?: DataOciIdentityDomainsApiKeyUser): any;
export declare class DataOciIdentityDomainsApiKeyUserOutputReference 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(): DataOciIdentityDomainsApiKeyUser | undefined;
set internalValue(value: DataOciIdentityDomainsApiKeyUser | undefined);
get display(): string;
get name(): string;
get ocid(): string;
get ref(): string;
get value(): string;
}
export declare class DataOciIdentityDomainsApiKeyUserList 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): DataOciIdentityDomainsApiKeyUserOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_api_key oci_identity_domains_api_key}
*/
export declare class DataOciIdentityDomainsApiKey extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_identity_domains_api_key";
/**
* Generates CDKTF code for importing a DataOciIdentityDomainsApiKey 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 DataOciIdentityDomainsApiKey to import
* @param importFromId The id of the existing DataOciIdentityDomainsApiKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_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 DataOciIdentityDomainsApiKey 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/identity_domains_api_key oci_identity_domains_api_key} 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 DataOciIdentityDomainsApiKeyConfig
*/
constructor(scope: Construct, id: string, config: DataOciIdentityDomainsApiKeyConfig);
private _apiKeyId?;
get apiKeyId(): string;
set apiKeyId(value: string);
get apiKeyIdInput(): string | 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;
get compartmentOcid(): string;
get deleteInProgress(): cdktf.IResolvable;
get description(): string;
get domainOcid(): string;
get fingerprint(): string;
get id(): string;
private _idcsCreatedBy;
get idcsCreatedBy(): DataOciIdentityDomainsApiKeyIdcsCreatedByList;
private _idcsEndpoint?;
get idcsEndpoint(): string;
set idcsEndpoint(value: string);
get idcsEndpointInput(): string | undefined;
private _idcsLastModifiedBy;
get idcsLastModifiedBy(): DataOciIdentityDomainsApiKeyIdcsLastModifiedByList;
get idcsLastUpgradedInRelease(): string;
get idcsPreventedOperations(): string[];
get key(): string;
private _meta;
get meta(): DataOciIdentityDomainsApiKeyMetaList;
get ocid(): string;
private _resourceTypeSchemaVersion?;
get resourceTypeSchemaVersion(): string;
set resourceTypeSchemaVersion(value: string);
resetResourceTypeSchemaVersion(): void;
get resourceTypeSchemaVersionInput(): string | undefined;
get schemas(): string[];
private _tags;
get tags(): DataOciIdentityDomainsApiKeyTagsList;
get tenancyOcid(): string;
private _urnietfparamsscimschemasoracleidcsextensionselfChangeUser;
get urnietfparamsscimschemasoracleidcsextensionselfChangeUser(): DataOciIdentityDomainsApiKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserList;
private _user;
get user(): DataOciIdentityDomainsApiKeyUserList;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}