UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

526 lines (525 loc) 29.3 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciIdentityDomainsGrantsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#attribute_sets DataOciIdentityDomainsGrants#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_grants#attributes DataOciIdentityDomainsGrants#attributes} */ readonly attributes?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#authorization DataOciIdentityDomainsGrants#authorization} */ readonly authorization?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#compartment_id DataOciIdentityDomainsGrants#compartment_id} */ readonly compartmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#grant_count DataOciIdentityDomainsGrants#grant_count} */ readonly grantCount?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#grant_filter DataOciIdentityDomainsGrants#grant_filter} */ readonly grantFilter?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#id DataOciIdentityDomainsGrants#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#idcs_endpoint DataOciIdentityDomainsGrants#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_grants#resource_type_schema_version DataOciIdentityDomainsGrants#resource_type_schema_version} */ readonly resourceTypeSchemaVersion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#sort_by DataOciIdentityDomainsGrants#sort_by} */ readonly sortBy?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#sort_order DataOciIdentityDomainsGrants#sort_order} */ readonly sortOrder?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#start_index DataOciIdentityDomainsGrants#start_index} */ readonly startIndex?: number; } export interface DataOciIdentityDomainsGrantsGrantsApp { } export declare function dataOciIdentityDomainsGrantsGrantsAppToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsApp): any; export declare function dataOciIdentityDomainsGrantsGrantsAppToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsApp): any; export declare class DataOciIdentityDomainsGrantsGrantsAppOutputReference 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(): DataOciIdentityDomainsGrantsGrantsApp | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsApp | undefined); get display(): string; get ref(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsAppList 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): DataOciIdentityDomainsGrantsGrantsAppOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsAppEntitlementCollection { } export declare function dataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsAppEntitlementCollection): any; export declare function dataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsAppEntitlementCollection): any; export declare class DataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionOutputReference 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(): DataOciIdentityDomainsGrantsGrantsAppEntitlementCollection | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsAppEntitlementCollection | undefined); get ref(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionList 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): DataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsEntitlement { } export declare function dataOciIdentityDomainsGrantsGrantsEntitlementToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsEntitlement): any; export declare function dataOciIdentityDomainsGrantsGrantsEntitlementToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsEntitlement): any; export declare class DataOciIdentityDomainsGrantsGrantsEntitlementOutputReference 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(): DataOciIdentityDomainsGrantsGrantsEntitlement | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsEntitlement | undefined); get attributeName(): string; get attributeValue(): string; } export declare class DataOciIdentityDomainsGrantsGrantsEntitlementList 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): DataOciIdentityDomainsGrantsGrantsEntitlementOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsGrantee { } export declare function dataOciIdentityDomainsGrantsGrantsGranteeToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsGrantee): any; export declare function dataOciIdentityDomainsGrantsGrantsGranteeToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsGrantee): any; export declare class DataOciIdentityDomainsGrantsGrantsGranteeOutputReference 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(): DataOciIdentityDomainsGrantsGrantsGrantee | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsGrantee | undefined); get display(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsGranteeList 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): DataOciIdentityDomainsGrantsGrantsGranteeOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsGrantor { } export declare function dataOciIdentityDomainsGrantsGrantsGrantorToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsGrantor): any; export declare function dataOciIdentityDomainsGrantsGrantsGrantorToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsGrantor): any; export declare class DataOciIdentityDomainsGrantsGrantsGrantorOutputReference 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(): DataOciIdentityDomainsGrantsGrantsGrantor | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsGrantor | undefined); get display(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsGrantorList 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): DataOciIdentityDomainsGrantsGrantsGrantorOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsIdcsCreatedBy { } export declare function dataOciIdentityDomainsGrantsGrantsIdcsCreatedByToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsIdcsCreatedBy): any; export declare function dataOciIdentityDomainsGrantsGrantsIdcsCreatedByToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsIdcsCreatedBy): any; export declare class DataOciIdentityDomainsGrantsGrantsIdcsCreatedByOutputReference 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(): DataOciIdentityDomainsGrantsGrantsIdcsCreatedBy | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsIdcsCreatedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsIdcsCreatedByList 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): DataOciIdentityDomainsGrantsGrantsIdcsCreatedByOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedBy { } export declare function dataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedBy): any; export declare function dataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedBy): any; export declare class DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByOutputReference 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(): DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedBy | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByList 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): DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsMeta { } export declare function dataOciIdentityDomainsGrantsGrantsMetaToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsMeta): any; export declare function dataOciIdentityDomainsGrantsGrantsMetaToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsMeta): any; export declare class DataOciIdentityDomainsGrantsGrantsMetaOutputReference 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(): DataOciIdentityDomainsGrantsGrantsMeta | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsMeta | undefined); get created(): string; get lastModified(): string; get location(): string; get resourceType(): string; get version(): string; } export declare class DataOciIdentityDomainsGrantsGrantsMetaList 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): DataOciIdentityDomainsGrantsGrantsMetaOutputReference; } export interface DataOciIdentityDomainsGrantsGrantsTags { } export declare function dataOciIdentityDomainsGrantsGrantsTagsToTerraform(struct?: DataOciIdentityDomainsGrantsGrantsTags): any; export declare function dataOciIdentityDomainsGrantsGrantsTagsToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrantsTags): any; export declare class DataOciIdentityDomainsGrantsGrantsTagsOutputReference 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(): DataOciIdentityDomainsGrantsGrantsTags | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrantsTags | undefined); get key(): string; get value(): string; } export declare class DataOciIdentityDomainsGrantsGrantsTagsList 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): DataOciIdentityDomainsGrantsGrantsTagsOutputReference; } export interface DataOciIdentityDomainsGrantsGrants { } export declare function dataOciIdentityDomainsGrantsGrantsToTerraform(struct?: DataOciIdentityDomainsGrantsGrants): any; export declare function dataOciIdentityDomainsGrantsGrantsToHclTerraform(struct?: DataOciIdentityDomainsGrantsGrants): any; export declare class DataOciIdentityDomainsGrantsGrantsOutputReference 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(): DataOciIdentityDomainsGrantsGrants | undefined; set internalValue(value: DataOciIdentityDomainsGrantsGrants | undefined); private _app; get app(): DataOciIdentityDomainsGrantsGrantsAppList; private _appEntitlementCollection; get appEntitlementCollection(): DataOciIdentityDomainsGrantsGrantsAppEntitlementCollectionList; get attributeSets(): string[]; get attributes(): string; get authorization(): string; get compartmentOcid(): string; get compositeKey(): string; get deleteInProgress(): cdktf.IResolvable; get domainOcid(): string; private _entitlement; get entitlement(): DataOciIdentityDomainsGrantsGrantsEntitlementList; get grantMechanism(): string; get grantedAttributeValuesJson(): string; private _grantee; get grantee(): DataOciIdentityDomainsGrantsGrantsGranteeList; private _grantor; get grantor(): DataOciIdentityDomainsGrantsGrantsGrantorList; get id(): string; private _idcsCreatedBy; get idcsCreatedBy(): DataOciIdentityDomainsGrantsGrantsIdcsCreatedByList; get idcsEndpoint(): string; private _idcsLastModifiedBy; get idcsLastModifiedBy(): DataOciIdentityDomainsGrantsGrantsIdcsLastModifiedByList; get idcsLastUpgradedInRelease(): string; get idcsPreventedOperations(): string[]; get isFulfilled(): cdktf.IResolvable; private _meta; get meta(): DataOciIdentityDomainsGrantsGrantsMetaList; get ocid(): string; get resourceTypeSchemaVersion(): string; get schemas(): string[]; private _tags; get tags(): DataOciIdentityDomainsGrantsGrantsTagsList; get tenancyOcid(): string; } export declare class DataOciIdentityDomainsGrantsGrantsList 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): DataOciIdentityDomainsGrantsGrantsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants oci_identity_domains_grants} */ export declare class DataOciIdentityDomainsGrants extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_identity_domains_grants"; /** * Generates CDKTF code for importing a DataOciIdentityDomainsGrants 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 DataOciIdentityDomainsGrants to import * @param importFromId The id of the existing DataOciIdentityDomainsGrants that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_grants#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciIdentityDomainsGrants 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_grants oci_identity_domains_grants} 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 DataOciIdentityDomainsGrantsConfig */ constructor(scope: Construct, id: string, config: DataOciIdentityDomainsGrantsConfig); 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 _compartmentId?; get compartmentId(): string; set compartmentId(value: string); resetCompartmentId(): void; get compartmentIdInput(): string | undefined; private _grantCount?; get grantCount(): number; set grantCount(value: number); resetGrantCount(): void; get grantCountInput(): number | undefined; private _grantFilter?; get grantFilter(): string; set grantFilter(value: string); resetGrantFilter(): void; get grantFilterInput(): string | undefined; private _grants; get grants(): DataOciIdentityDomainsGrantsGrantsList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _idcsEndpoint?; get idcsEndpoint(): string; set idcsEndpoint(value: string); get idcsEndpointInput(): string | undefined; get itemsPerPage(): number; private _resourceTypeSchemaVersion?; get resourceTypeSchemaVersion(): string; set resourceTypeSchemaVersion(value: string); resetResourceTypeSchemaVersion(): void; get resourceTypeSchemaVersionInput(): string | undefined; get schemas(): string[]; private _sortBy?; get sortBy(): string; set sortBy(value: string); resetSortBy(): void; get sortByInput(): string | undefined; private _sortOrder?; get sortOrder(): string; set sortOrder(value: string); resetSortOrder(): void; get sortOrderInput(): string | undefined; private _startIndex?; get startIndex(): number; set startIndex(value: number); resetStartIndex(): void; get startIndexInput(): number | undefined; get totalResults(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }