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 Associations in Oracle Cloud Infrastructure Certificates Management service. * * Lists all associations that match the query parameters. * Optionally, you can use the parameter `FilterByAssociationIdQueryParam` to limit the result set to a single item that matches the specified association. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssociations = oci.certificatesmanagement.getAssociations({ * associatedResourceId: testAssociatedResource.id, * associationId: testAssociation.id, * associationType: associationAssociationType, * certificatesResourceId: testCertificatesResource.id, * compartmentId: compartmentId, * name: associationName, * }); * ``` */ export declare function getAssociations(args?: GetAssociationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAssociations. */ export interface GetAssociationsArgs { /** * A filter that returns only resources that match the given OCID of an associated Oracle Cloud Infrastructure resource. */ associatedResourceId?: string; /** * The OCID of the association. If the parameter is set to null, the service lists all associations. */ associationId?: string; /** * Type of associations to list. If the parameter is set to null, the service lists all types of associations. */ associationType?: string; /** * A filter that returns only resources that match the given OCID of a certificate-related resource. */ certificatesResourceId?: string; /** * A filter that returns only resources that match the given compartment OCID. */ compartmentId?: string; filters?: inputs.CertificatesManagement.GetAssociationsFilter[]; /** * A filter that returns only resources that match the specified name. */ name?: string; } /** * A collection of values returned by getAssociations. */ export interface GetAssociationsResult { /** * The OCID of the associated resource. */ readonly associatedResourceId?: string; /** * The list of association_collection. */ readonly associationCollections: outputs.CertificatesManagement.GetAssociationsAssociationCollection[]; readonly associationId?: string; /** * Type of the association. */ readonly associationType?: string; /** * The OCID of the certificate-related resource associated with another Oracle Cloud Infrastructure resource. */ readonly certificatesResourceId?: string; /** * The compartment OCID of the association, which is strongly tied to the compartment OCID of the certificate-related resource. */ readonly compartmentId?: string; readonly filters?: outputs.CertificatesManagement.GetAssociationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A user-friendly name generated by the service for the association, expressed in a format that follows the pattern: [certificatesResourceEntityType]-[associatedResourceEntityType]-UUID. */ readonly name?: string; } /** * This data source provides the list of Associations in Oracle Cloud Infrastructure Certificates Management service. * * Lists all associations that match the query parameters. * Optionally, you can use the parameter `FilterByAssociationIdQueryParam` to limit the result set to a single item that matches the specified association. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssociations = oci.certificatesmanagement.getAssociations({ * associatedResourceId: testAssociatedResource.id, * associationId: testAssociation.id, * associationType: associationAssociationType, * certificatesResourceId: testCertificatesResource.id, * compartmentId: compartmentId, * name: associationName, * }); * ``` */ export declare function getAssociationsOutput(args?: GetAssociationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAssociations. */ export interface GetAssociationsOutputArgs { /** * A filter that returns only resources that match the given OCID of an associated Oracle Cloud Infrastructure resource. */ associatedResourceId?: pulumi.Input; /** * The OCID of the association. If the parameter is set to null, the service lists all associations. */ associationId?: pulumi.Input; /** * Type of associations to list. If the parameter is set to null, the service lists all types of associations. */ associationType?: pulumi.Input; /** * A filter that returns only resources that match the given OCID of a certificate-related resource. */ certificatesResourceId?: pulumi.Input; /** * A filter that returns only resources that match the given compartment OCID. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter that returns only resources that match the specified name. */ name?: pulumi.Input; } //# sourceMappingURL=getAssociations.d.ts.map