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 Model Group Models in Oracle Cloud Infrastructure Data Science service. * * Lists all models associated with the modelGroup in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroupModels = oci.datascience.getModelGroupModels({ * compartmentId: compartmentId, * modelGroupId: testModelGroup.id, * createdBy: modelGroupModelCreatedBy, * displayName: modelGroupModelDisplayName, * id: modelGroupModelId, * state: modelGroupModelState, * }); * ``` */ export declare function getModelGroupModels(args: GetModelGroupModelsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelGroupModels. */ export interface GetModelGroupModelsArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource. */ createdBy?: string; /** * Filter results by its user-friendly name. */ displayName?: string; filters?: inputs.DataScience.GetModelGroupModelsFilter[]; /** * Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type. */ id?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroup. */ modelGroupId: string; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: string; } /** * A collection of values returned by getModelGroupModels. */ export interface GetModelGroupModelsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model's compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the model. */ readonly createdBy?: string; /** * A user-friendly display name of the model. */ readonly displayName?: string; readonly filters?: outputs.DataScience.GetModelGroupModelsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model group. */ readonly id?: string; readonly modelGroupId: string; /** * The list of model_group_models. */ readonly modelGroupModels: outputs.DataScience.GetModelGroupModelsModelGroupModel[]; /** * The state of the model. */ readonly state?: string; } /** * This data source provides the list of Model Group Models in Oracle Cloud Infrastructure Data Science service. * * Lists all models associated with the modelGroup in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroupModels = oci.datascience.getModelGroupModels({ * compartmentId: compartmentId, * modelGroupId: testModelGroup.id, * createdBy: modelGroupModelCreatedBy, * displayName: modelGroupModelDisplayName, * id: modelGroupModelId, * state: modelGroupModelState, * }); * ``` */ export declare function getModelGroupModelsOutput(args: GetModelGroupModelsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelGroupModels. */ export interface GetModelGroupModelsOutputArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource. */ createdBy?: pulumi.Input; /** * Filter results by its user-friendly name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type. */ id?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroup. */ modelGroupId: pulumi.Input; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: pulumi.Input; } //# sourceMappingURL=getModelGroupModels.d.ts.map