import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Attribute Set Associated Resources in Oracle Cloud Infrastructure Data Safe service. * * Returns list of all associated resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAttributeSetAssociatedResources = oci.datasafe.getAttributeSetAssociatedResources({ * attributeSetId: testAttributeSet.id, * associatedResourceId: testResource.id, * associatedResourceType: attributeSetAssociatedResourceAssociatedResourceType, * }); * ``` */ export declare function getAttributeSetAssociatedResources(args: GetAttributeSetAssociatedResourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAttributeSetAssociatedResources. */ export interface GetAttributeSetAssociatedResourcesArgs { /** * A filter to return attribute set associated resource that matches the specified associated resource id query param. */ associatedResourceId?: string; /** * A filter to return attribute set associated resources that matches the specified resource type query param. */ associatedResourceType?: string; /** * OCID of an attribute set. */ attributeSetId: string; filters?: inputs.DataSafe.GetAttributeSetAssociatedResourcesFilter[]; } /** * A collection of values returned by getAttributeSetAssociatedResources. */ export interface GetAttributeSetAssociatedResourcesResult { /** * The list of associated_resource_collection. */ readonly associatedResourceCollections: outputs.DataSafe.GetAttributeSetAssociatedResourcesAssociatedResourceCollection[]; /** * The OCID of the resource that is associated with the attribute set. */ readonly associatedResourceId?: string; /** * The resource type that is associated with the attribute set. */ readonly associatedResourceType?: string; readonly attributeSetId: string; readonly filters?: outputs.DataSafe.GetAttributeSetAssociatedResourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Attribute Set Associated Resources in Oracle Cloud Infrastructure Data Safe service. * * Returns list of all associated resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAttributeSetAssociatedResources = oci.datasafe.getAttributeSetAssociatedResources({ * attributeSetId: testAttributeSet.id, * associatedResourceId: testResource.id, * associatedResourceType: attributeSetAssociatedResourceAssociatedResourceType, * }); * ``` */ export declare function getAttributeSetAssociatedResourcesOutput(args: GetAttributeSetAssociatedResourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAttributeSetAssociatedResources. */ export interface GetAttributeSetAssociatedResourcesOutputArgs { /** * A filter to return attribute set associated resource that matches the specified associated resource id query param. */ associatedResourceId?: pulumi.Input; /** * A filter to return attribute set associated resources that matches the specified resource type query param. */ associatedResourceType?: pulumi.Input; /** * OCID of an attribute set. */ attributeSetId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getAttributeSetAssociatedResources.d.ts.map