1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. getMlApplicationImplementations
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.DataScience.getMlApplicationImplementations

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

    This data source provides the list of Ml Application Implementations in Oracle Cloud Infrastructure Data Science service.

    Returns a list of MlApplicationImplementations.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMlApplicationImplementations = oci.DataScience.getMlApplicationImplementations({
        compartmentId: compartmentId,
        compartmentIdInSubtree: mlApplicationImplementationCompartmentIdInSubtree,
        mlApplicationId: testMlApplication.id,
        mlApplicationImplementationId: testMlApplicationImplementation.id,
        name: mlApplicationImplementationName,
        state: mlApplicationImplementationState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_ml_application_implementations = oci.DataScience.get_ml_application_implementations(compartment_id=compartment_id,
        compartment_id_in_subtree=ml_application_implementation_compartment_id_in_subtree,
        ml_application_id=test_ml_application["id"],
        ml_application_implementation_id=test_ml_application_implementation["id"],
        name=ml_application_implementation_name,
        state=ml_application_implementation_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datascience.GetMlApplicationImplementations(ctx, &datascience.GetMlApplicationImplementationsArgs{
    			CompartmentId:                 compartmentId,
    			CompartmentIdInSubtree:        pulumi.BoolRef(mlApplicationImplementationCompartmentIdInSubtree),
    			MlApplicationId:               pulumi.StringRef(testMlApplication.Id),
    			MlApplicationImplementationId: pulumi.StringRef(testMlApplicationImplementation.Id),
    			Name:                          pulumi.StringRef(mlApplicationImplementationName),
    			State:                         pulumi.StringRef(mlApplicationImplementationState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testMlApplicationImplementations = Oci.DataScience.GetMlApplicationImplementations.Invoke(new()
        {
            CompartmentId = compartmentId,
            CompartmentIdInSubtree = mlApplicationImplementationCompartmentIdInSubtree,
            MlApplicationId = testMlApplication.Id,
            MlApplicationImplementationId = testMlApplicationImplementation.Id,
            Name = mlApplicationImplementationName,
            State = mlApplicationImplementationState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.DataScienceFunctions;
    import com.pulumi.oci.DataScience.inputs.GetMlApplicationImplementationsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testMlApplicationImplementations = DataScienceFunctions.getMlApplicationImplementations(GetMlApplicationImplementationsArgs.builder()
                .compartmentId(compartmentId)
                .compartmentIdInSubtree(mlApplicationImplementationCompartmentIdInSubtree)
                .mlApplicationId(testMlApplication.id())
                .mlApplicationImplementationId(testMlApplicationImplementation.id())
                .name(mlApplicationImplementationName)
                .state(mlApplicationImplementationState)
                .build());
    
        }
    }
    
    variables:
      testMlApplicationImplementations:
        fn::invoke:
          function: oci:DataScience:getMlApplicationImplementations
          arguments:
            compartmentId: ${compartmentId}
            compartmentIdInSubtree: ${mlApplicationImplementationCompartmentIdInSubtree}
            mlApplicationId: ${testMlApplication.id}
            mlApplicationImplementationId: ${testMlApplicationImplementation.id}
            name: ${mlApplicationImplementationName}
            state: ${mlApplicationImplementationState}
    

    Using getMlApplicationImplementations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getMlApplicationImplementations(args: GetMlApplicationImplementationsArgs, opts?: InvokeOptions): Promise<GetMlApplicationImplementationsResult>
    function getMlApplicationImplementationsOutput(args: GetMlApplicationImplementationsOutputArgs, opts?: InvokeOptions): Output<GetMlApplicationImplementationsResult>
    def get_ml_application_implementations(compartment_id: Optional[str] = None,
                                           compartment_id_in_subtree: Optional[bool] = None,
                                           filters: Optional[Sequence[_datascience.GetMlApplicationImplementationsFilter]] = None,
                                           ml_application_id: Optional[str] = None,
                                           ml_application_implementation_id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           state: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetMlApplicationImplementationsResult
    def get_ml_application_implementations_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                           compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datascience.GetMlApplicationImplementationsFilterArgs]]]] = None,
                                           ml_application_id: Optional[pulumi.Input[str]] = None,
                                           ml_application_implementation_id: Optional[pulumi.Input[str]] = None,
                                           name: Optional[pulumi.Input[str]] = None,
                                           state: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetMlApplicationImplementationsResult]
    func GetMlApplicationImplementations(ctx *Context, args *GetMlApplicationImplementationsArgs, opts ...InvokeOption) (*GetMlApplicationImplementationsResult, error)
    func GetMlApplicationImplementationsOutput(ctx *Context, args *GetMlApplicationImplementationsOutputArgs, opts ...InvokeOption) GetMlApplicationImplementationsResultOutput

    > Note: This function is named GetMlApplicationImplementations in the Go SDK.

    public static class GetMlApplicationImplementations 
    {
        public static Task<GetMlApplicationImplementationsResult> InvokeAsync(GetMlApplicationImplementationsArgs args, InvokeOptions? opts = null)
        public static Output<GetMlApplicationImplementationsResult> Invoke(GetMlApplicationImplementationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMlApplicationImplementationsResult> getMlApplicationImplementations(GetMlApplicationImplementationsArgs args, InvokeOptions options)
    public static Output<GetMlApplicationImplementationsResult> getMlApplicationImplementations(GetMlApplicationImplementationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataScience/getMlApplicationImplementations:getMlApplicationImplementations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    Filter results by the OCID of the compartment.
    CompartmentIdInSubtree bool
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    Filters List<GetMlApplicationImplementationsFilter>
    MlApplicationId string
    unique MlApplication identifier
    MlApplicationImplementationId string
    unique MlApplicationImplementation identifier
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    CompartmentId string
    Filter results by the OCID of the compartment.
    CompartmentIdInSubtree bool
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    Filters []GetMlApplicationImplementationsFilter
    MlApplicationId string
    unique MlApplication identifier
    MlApplicationImplementationId string
    unique MlApplicationImplementation identifier
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    compartmentIdInSubtree Boolean
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    filters List<GetMlApplicationImplementationsFilter>
    mlApplicationId String
    unique MlApplication identifier
    mlApplicationImplementationId String
    unique MlApplicationImplementation identifier
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    compartmentId string
    Filter results by the OCID of the compartment.
    compartmentIdInSubtree boolean
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    filters GetMlApplicationImplementationsFilter[]
    mlApplicationId string
    unique MlApplication identifier
    mlApplicationImplementationId string
    unique MlApplicationImplementation identifier
    name string
    A filter to return only resources that match the entire name given.
    state string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    compartment_id str
    Filter results by the OCID of the compartment.
    compartment_id_in_subtree bool
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    filters Sequence[datascience.GetMlApplicationImplementationsFilter]
    ml_application_id str
    unique MlApplication identifier
    ml_application_implementation_id str
    unique MlApplicationImplementation identifier
    name str
    A filter to return only resources that match the entire name given.
    state str
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    compartmentIdInSubtree Boolean
    If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment.
    filters List<Property Map>
    mlApplicationId String
    unique MlApplication identifier
    mlApplicationImplementationId String
    unique MlApplicationImplementation identifier
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources with lifecycleState matching the given lifecycleState.

    getMlApplicationImplementations Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment where ML Application Implementation is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    MlApplicationImplementationCollections List<GetMlApplicationImplementationsMlApplicationImplementationCollection>
    The list of ml_application_implementation_collection.
    CompartmentIdInSubtree bool
    Filters List<GetMlApplicationImplementationsFilter>
    MlApplicationId string
    The OCID of the ML Application implemented by this ML Application Implementation.
    MlApplicationImplementationId string
    Name string
    ML Application Implementation name which is unique for given ML Application.
    State string
    The current state of the MlApplicationImplementation.
    CompartmentId string
    The OCID of the compartment where ML Application Implementation is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    MlApplicationImplementationCollections []GetMlApplicationImplementationsMlApplicationImplementationCollection
    The list of ml_application_implementation_collection.
    CompartmentIdInSubtree bool
    Filters []GetMlApplicationImplementationsFilter
    MlApplicationId string
    The OCID of the ML Application implemented by this ML Application Implementation.
    MlApplicationImplementationId string
    Name string
    ML Application Implementation name which is unique for given ML Application.
    State string
    The current state of the MlApplicationImplementation.
    compartmentId String
    The OCID of the compartment where ML Application Implementation is created.
    id String
    The provider-assigned unique ID for this managed resource.
    mlApplicationImplementationCollections List<GetMlApplicationImplementationsMlApplicationImplementationCollection>
    The list of ml_application_implementation_collection.
    compartmentIdInSubtree Boolean
    filters List<GetMlApplicationImplementationsFilter>
    mlApplicationId String
    The OCID of the ML Application implemented by this ML Application Implementation.
    mlApplicationImplementationId String
    name String
    ML Application Implementation name which is unique for given ML Application.
    state String
    The current state of the MlApplicationImplementation.
    compartmentId string
    The OCID of the compartment where ML Application Implementation is created.
    id string
    The provider-assigned unique ID for this managed resource.
    mlApplicationImplementationCollections GetMlApplicationImplementationsMlApplicationImplementationCollection[]
    The list of ml_application_implementation_collection.
    compartmentIdInSubtree boolean
    filters GetMlApplicationImplementationsFilter[]
    mlApplicationId string
    The OCID of the ML Application implemented by this ML Application Implementation.
    mlApplicationImplementationId string
    name string
    ML Application Implementation name which is unique for given ML Application.
    state string
    The current state of the MlApplicationImplementation.
    compartment_id str
    The OCID of the compartment where ML Application Implementation is created.
    id str
    The provider-assigned unique ID for this managed resource.
    ml_application_implementation_collections Sequence[datascience.GetMlApplicationImplementationsMlApplicationImplementationCollection]
    The list of ml_application_implementation_collection.
    compartment_id_in_subtree bool
    filters Sequence[datascience.GetMlApplicationImplementationsFilter]
    ml_application_id str
    The OCID of the ML Application implemented by this ML Application Implementation.
    ml_application_implementation_id str
    name str
    ML Application Implementation name which is unique for given ML Application.
    state str
    The current state of the MlApplicationImplementation.
    compartmentId String
    The OCID of the compartment where ML Application Implementation is created.
    id String
    The provider-assigned unique ID for this managed resource.
    mlApplicationImplementationCollections List<Property Map>
    The list of ml_application_implementation_collection.
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    mlApplicationId String
    The OCID of the ML Application implemented by this ML Application Implementation.
    mlApplicationImplementationId String
    name String
    ML Application Implementation name which is unique for given ML Application.
    state String
    The current state of the MlApplicationImplementation.

    Supporting Types

    GetMlApplicationImplementationsFilter

    Name string
    A filter to return only resources that match the entire name given.
    Values List<string>
    Regex bool
    Name string
    A filter to return only resources that match the entire name given.
    Values []string
    Regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean
    name string
    A filter to return only resources that match the entire name given.
    values string[]
    regex boolean
    name str
    A filter to return only resources that match the entire name given.
    values Sequence[str]
    regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean

    GetMlApplicationImplementationsMlApplicationImplementationCollection

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItem

    AllowedMigrationDestinations List<string>
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    ApplicationComponents List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent>
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationSchemas List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema>
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    short description of the argument
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Loggings List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging>
    Configuration of Logging for ML Application Implementation.
    MlApplicationId string
    unique MlApplication identifier
    MlApplicationName string
    The name of ML Application (based on mlApplicationId)
    MlApplicationPackage Dictionary<string, string>
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    MlApplicationPackageArguments List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument>
    List of ML Application package arguments provided during ML Application package upload.
    Name string
    A filter to return only resources that match the entire name given.
    OpcMlAppPackageArgs Dictionary<string, string>
    PackageVersion string
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    State string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    TimeUpdated string
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.
    AllowedMigrationDestinations []string
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    ApplicationComponents []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationSchemas []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    short description of the argument
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Loggings []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging
    Configuration of Logging for ML Application Implementation.
    MlApplicationId string
    unique MlApplication identifier
    MlApplicationName string
    The name of ML Application (based on mlApplicationId)
    MlApplicationPackage map[string]string
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    MlApplicationPackageArguments []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument
    List of ML Application package arguments provided during ML Application package upload.
    Name string
    A filter to return only resources that match the entire name given.
    OpcMlAppPackageArgs map[string]string
    PackageVersion string
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    State string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    TimeUpdated string
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.
    allowedMigrationDestinations List<String>
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    applicationComponents List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent>
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationSchemas List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema>
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    short description of the argument
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    loggings List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging>
    Configuration of Logging for ML Application Implementation.
    mlApplicationId String
    unique MlApplication identifier
    mlApplicationName String
    The name of ML Application (based on mlApplicationId)
    mlApplicationPackage Map<String,String>
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    mlApplicationPackageArguments List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument>
    List of ML Application package arguments provided during ML Application package upload.
    name String
    A filter to return only resources that match the entire name given.
    opcMlAppPackageArgs Map<String,String>
    packageVersion String
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    state String
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    timeUpdated String
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.
    allowedMigrationDestinations string[]
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    applicationComponents GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent[]
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    compartmentId string
    Filter results by the OCID of the compartment.
    configurationSchemas GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema[]
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    short description of the argument
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    loggings GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging[]
    Configuration of Logging for ML Application Implementation.
    mlApplicationId string
    unique MlApplication identifier
    mlApplicationName string
    The name of ML Application (based on mlApplicationId)
    mlApplicationPackage {[key: string]: string}
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    mlApplicationPackageArguments GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument[]
    List of ML Application package arguments provided during ML Application package upload.
    name string
    A filter to return only resources that match the entire name given.
    opcMlAppPackageArgs {[key: string]: string}
    packageVersion string
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    state string
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    timeUpdated string
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.
    allowed_migration_destinations Sequence[str]
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    application_components Sequence[datascience.GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent]
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    compartment_id str
    Filter results by the OCID of the compartment.
    configuration_schemas Sequence[datascience.GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema]
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    short description of the argument
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    loggings Sequence[datascience.GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging]
    Configuration of Logging for ML Application Implementation.
    ml_application_id str
    unique MlApplication identifier
    ml_application_name str
    The name of ML Application (based on mlApplicationId)
    ml_application_package Mapping[str, str]
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    ml_application_package_arguments Sequence[datascience.GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument]
    List of ML Application package arguments provided during ML Application package upload.
    name str
    A filter to return only resources that match the entire name given.
    opc_ml_app_package_args Mapping[str, str]
    package_version str
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    state str
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    time_updated str
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.
    allowedMigrationDestinations List<String>
    List of ML Application Implementation OCIDs for which migration from this implementation is allowed. Migration means that if consumers change implementation for their instances to implementation with OCID from this list, instance components will be updated in place otherwise new instance components are created based on the new implementation and old instance components are removed.
    applicationComponents List<Property Map>
    List of application components (OCI resources shared for all MlApplicationInstances). These have been created automatically based on their definitions in the ML Application package.
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationSchemas List<Property Map>
    Schema of configuration which needs to be provided for each ML Application Instance. It is defined in the ML Application package descriptor.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    short description of the argument
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    loggings List<Property Map>
    Configuration of Logging for ML Application Implementation.
    mlApplicationId String
    unique MlApplication identifier
    mlApplicationName String
    The name of ML Application (based on mlApplicationId)
    mlApplicationPackage Map<String>
    Specifies the ML application package as a map of key-value pairs. Valid keys include 'source_type', 'path', and 'uri'. Use 'file://' for local paths or 'https://' for object storage URIs.
    mlApplicationPackageArguments List<Property Map>
    List of ML Application package arguments provided during ML Application package upload.
    name String
    A filter to return only resources that match the entire name given.
    opcMlAppPackageArgs Map<String>
    packageVersion String
    The version of ML Application Package (e.g. "1.2" or "2.0.4") defined in ML Application package descriptor. Value is not mandatory only for CREATING state otherwise it must be always presented.
    state String
    A filter to return only resources with lifecycleState matching the given lifecycleState.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Creation time of MlApplicationImplementation creation in the format defined by RFC 3339.
    timeUpdated String
    Time of last MlApplicationImplementation update in the format defined by RFC 3339.

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemApplicationComponent

    ApplicationId string
    OCID of Data Flow Application
    ComponentName string
    Name of application component
    Id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    JobId string
    OCID of Data Science Job
    ModelId string
    OCID of Data Science Model
    Name string
    A filter to return only resources that match the entire name given.
    PipelineId string
    OCID of Data Science Pipeline
    ResourceType string
    Type of the resource
    Type string
    type of the argument
    ApplicationId string
    OCID of Data Flow Application
    ComponentName string
    Name of application component
    Id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    JobId string
    OCID of Data Science Job
    ModelId string
    OCID of Data Science Model
    Name string
    A filter to return only resources that match the entire name given.
    PipelineId string
    OCID of Data Science Pipeline
    ResourceType string
    Type of the resource
    Type string
    type of the argument
    applicationId String
    OCID of Data Flow Application
    componentName String
    Name of application component
    id String
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    jobId String
    OCID of Data Science Job
    modelId String
    OCID of Data Science Model
    name String
    A filter to return only resources that match the entire name given.
    pipelineId String
    OCID of Data Science Pipeline
    resourceType String
    Type of the resource
    type String
    type of the argument
    applicationId string
    OCID of Data Flow Application
    componentName string
    Name of application component
    id string
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    jobId string
    OCID of Data Science Job
    modelId string
    OCID of Data Science Model
    name string
    A filter to return only resources that match the entire name given.
    pipelineId string
    OCID of Data Science Pipeline
    resourceType string
    Type of the resource
    type string
    type of the argument
    application_id str
    OCID of Data Flow Application
    component_name str
    Name of application component
    id str
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    job_id str
    OCID of Data Science Job
    model_id str
    OCID of Data Science Model
    name str
    A filter to return only resources that match the entire name given.
    pipeline_id str
    OCID of Data Science Pipeline
    resource_type str
    Type of the resource
    type str
    type of the argument
    applicationId String
    OCID of Data Flow Application
    componentName String
    Name of application component
    id String
    The OCID of the MlApplicationImplementation. Unique identifier that is immutable after creation.
    jobId String
    OCID of Data Science Job
    modelId String
    OCID of Data Science Model
    name String
    A filter to return only resources that match the entire name given.
    pipelineId String
    OCID of Data Science Pipeline
    resourceType String
    Type of the resource
    type String
    type of the argument

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemConfigurationSchema

    DefaultValue string
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    Description string
    short description of the argument
    IsMandatory bool
    argument is mandatory or not
    KeyName string
    Name of key (parameter name)
    SampleValue string
    Sample property value (it must match validationRegexp if it is specified)
    ValidationRegexp string
    A regular expression will be used for the validation of property value.
    ValueType string
    Type of value
    DefaultValue string
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    Description string
    short description of the argument
    IsMandatory bool
    argument is mandatory or not
    KeyName string
    Name of key (parameter name)
    SampleValue string
    Sample property value (it must match validationRegexp if it is specified)
    ValidationRegexp string
    A regular expression will be used for the validation of property value.
    ValueType string
    Type of value
    defaultValue String
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    description String
    short description of the argument
    isMandatory Boolean
    argument is mandatory or not
    keyName String
    Name of key (parameter name)
    sampleValue String
    Sample property value (it must match validationRegexp if it is specified)
    validationRegexp String
    A regular expression will be used for the validation of property value.
    valueType String
    Type of value
    defaultValue string
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    description string
    short description of the argument
    isMandatory boolean
    argument is mandatory or not
    keyName string
    Name of key (parameter name)
    sampleValue string
    Sample property value (it must match validationRegexp if it is specified)
    validationRegexp string
    A regular expression will be used for the validation of property value.
    valueType string
    Type of value
    default_value str
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    description str
    short description of the argument
    is_mandatory bool
    argument is mandatory or not
    key_name str
    Name of key (parameter name)
    sample_value str
    Sample property value (it must match validationRegexp if it is specified)
    validation_regexp str
    A regular expression will be used for the validation of property value.
    value_type str
    Type of value
    defaultValue String
    The default value for the optional configuration property (it must not be specified for mandatory configuration properties)
    description String
    short description of the argument
    isMandatory Boolean
    argument is mandatory or not
    keyName String
    Name of key (parameter name)
    sampleValue String
    Sample property value (it must match validationRegexp if it is specified)
    validationRegexp String
    A regular expression will be used for the validation of property value.
    valueType String
    Type of value

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLogging

    AggregatedInstanceViewLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingAggregatedInstanceViewLog>
    Log configuration details for particular areas of ML Application Implementation.
    ImplementationLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingImplementationLog>
    Log configuration details for particular areas of ML Application Implementation.
    TriggerLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingTriggerLog>
    Log configuration details for particular areas of ML Application Implementation.
    AggregatedInstanceViewLogs []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingAggregatedInstanceViewLog
    Log configuration details for particular areas of ML Application Implementation.
    ImplementationLogs []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingImplementationLog
    Log configuration details for particular areas of ML Application Implementation.
    TriggerLogs []GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingTriggerLog
    Log configuration details for particular areas of ML Application Implementation.
    aggregatedInstanceViewLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingAggregatedInstanceViewLog>
    Log configuration details for particular areas of ML Application Implementation.
    implementationLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingImplementationLog>
    Log configuration details for particular areas of ML Application Implementation.
    triggerLogs List<GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingTriggerLog>
    Log configuration details for particular areas of ML Application Implementation.
    aggregatedInstanceViewLogs GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingAggregatedInstanceViewLog[]
    Log configuration details for particular areas of ML Application Implementation.
    implementationLogs GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingImplementationLog[]
    Log configuration details for particular areas of ML Application Implementation.
    triggerLogs GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingTriggerLog[]
    Log configuration details for particular areas of ML Application Implementation.
    aggregatedInstanceViewLogs List<Property Map>
    Log configuration details for particular areas of ML Application Implementation.
    implementationLogs List<Property Map>
    Log configuration details for particular areas of ML Application Implementation.
    triggerLogs List<Property Map>
    Log configuration details for particular areas of ML Application Implementation.

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingAggregatedInstanceViewLog

    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.
    enableLogging boolean
    If logging is enabled.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the log.
    enable_logging bool
    If logging is enabled.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingImplementationLog

    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.
    enableLogging boolean
    If logging is enabled.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the log.
    enable_logging bool
    If logging is enabled.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemLoggingTriggerLog

    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    EnableLogging bool
    If logging is enabled.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.
    enableLogging boolean
    If logging is enabled.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the log.
    enable_logging bool
    If logging is enabled.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the log.
    enableLogging Boolean
    If logging is enabled.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgument

    arguments List<Property Map>
    Array of the ML Application package arguments

    GetMlApplicationImplementationsMlApplicationImplementationCollectionItemMlApplicationPackageArgumentArgument

    Description string
    short description of the argument
    IsMandatory bool
    argument is mandatory or not
    Name string
    A filter to return only resources that match the entire name given.
    Type string
    type of the argument
    Value string
    Argument value
    Description string
    short description of the argument
    IsMandatory bool
    argument is mandatory or not
    Name string
    A filter to return only resources that match the entire name given.
    Type string
    type of the argument
    Value string
    Argument value
    description String
    short description of the argument
    isMandatory Boolean
    argument is mandatory or not
    name String
    A filter to return only resources that match the entire name given.
    type String
    type of the argument
    value String
    Argument value
    description string
    short description of the argument
    isMandatory boolean
    argument is mandatory or not
    name string
    A filter to return only resources that match the entire name given.
    type string
    type of the argument
    value string
    Argument value
    description str
    short description of the argument
    is_mandatory bool
    argument is mandatory or not
    name str
    A filter to return only resources that match the entire name given.
    type str
    type of the argument
    value str
    Argument value
    description String
    short description of the argument
    isMandatory Boolean
    argument is mandatory or not
    name String
    A filter to return only resources that match the entire name given.
    type String
    type of the argument
    value String
    Argument value

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi