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 Wls Domain Agreement Records in Oracle Cloud Infrastructure Wlms service. * * List the terms of use agreement record for the WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainAgreementRecords = oci.oci.getWlmsWlsDomainAgreementRecords({ * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainAgreementRecords(args: GetWlmsWlsDomainAgreementRecordsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainAgreementRecords. */ export interface GetWlmsWlsDomainAgreementRecordsArgs { filters?: inputs.oci.GetWlmsWlsDomainAgreementRecordsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: string; } /** * A collection of values returned by getWlmsWlsDomainAgreementRecords. */ export interface GetWlmsWlsDomainAgreementRecordsResult { /** * The list of agreement_record_collection. */ readonly agreementRecordCollections: outputs.oci.GetWlmsWlsDomainAgreementRecordsAgreementRecordCollection[]; readonly filters?: outputs.oci.GetWlmsWlsDomainAgreementRecordsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Agreement Records in Oracle Cloud Infrastructure Wlms service. * * List the terms of use agreement record for the WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainAgreementRecords = oci.oci.getWlmsWlsDomainAgreementRecords({ * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainAgreementRecordsOutput(args: GetWlmsWlsDomainAgreementRecordsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainAgreementRecords. */ export interface GetWlmsWlsDomainAgreementRecordsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainAgreementRecords.d.ts.map