oci.DataScience.getModelVersionSets
Explore with Pulumi AI
This data source provides the list of Model Version Sets in Oracle Cloud Infrastructure Data Science service.
Lists model version sets in the specified compartment.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testModelVersionSets = Oci.DataScience.GetModelVersionSets.Invoke(new()
{
CompartmentId = @var.Compartment_id,
CreatedBy = @var.Model_version_set_created_by,
Id = @var.Model_version_set_id,
Name = @var.Model_version_set_name,
ProjectId = oci_datascience_project.Test_project.Id,
State = @var.Model_version_set_state,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataScience"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataScience.GetModelVersionSets(ctx, &datascience.GetModelVersionSetsArgs{
CompartmentId: _var.Compartment_id,
CreatedBy: pulumi.StringRef(_var.Model_version_set_created_by),
Id: pulumi.StringRef(_var.Model_version_set_id),
Name: pulumi.StringRef(_var.Model_version_set_name),
ProjectId: pulumi.StringRef(oci_datascience_project.Test_project.Id),
State: pulumi.StringRef(_var.Model_version_set_state),
}, nil)
if err != nil {
return err
}
return nil
})
}
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.GetModelVersionSetsArgs;
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 testModelVersionSets = DataScienceFunctions.getModelVersionSets(GetModelVersionSetsArgs.builder()
.compartmentId(var_.compartment_id())
.createdBy(var_.model_version_set_created_by())
.id(var_.model_version_set_id())
.name(var_.model_version_set_name())
.projectId(oci_datascience_project.test_project().id())
.state(var_.model_version_set_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_model_version_sets = oci.DataScience.get_model_version_sets(compartment_id=var["compartment_id"],
created_by=var["model_version_set_created_by"],
id=var["model_version_set_id"],
name=var["model_version_set_name"],
project_id=oci_datascience_project["test_project"]["id"],
state=var["model_version_set_state"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testModelVersionSets = oci.DataScience.getModelVersionSets({
compartmentId: _var.compartment_id,
createdBy: _var.model_version_set_created_by,
id: _var.model_version_set_id,
name: _var.model_version_set_name,
projectId: oci_datascience_project.test_project.id,
state: _var.model_version_set_state,
});
variables:
testModelVersionSets:
fn::invoke:
Function: oci:DataScience:getModelVersionSets
Arguments:
compartmentId: ${var.compartment_id}
createdBy: ${var.model_version_set_created_by}
id: ${var.model_version_set_id}
name: ${var.model_version_set_name}
projectId: ${oci_datascience_project.test_project.id}
state: ${var.model_version_set_state}
Using getModelVersionSets
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 getModelVersionSets(args: GetModelVersionSetsArgs, opts?: InvokeOptions): Promise<GetModelVersionSetsResult>
function getModelVersionSetsOutput(args: GetModelVersionSetsOutputArgs, opts?: InvokeOptions): Output<GetModelVersionSetsResult>
def get_model_version_sets(compartment_id: Optional[str] = None,
created_by: Optional[str] = None,
filters: Optional[Sequence[_datascience.GetModelVersionSetsFilter]] = None,
id: Optional[str] = None,
name: Optional[str] = None,
project_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetModelVersionSetsResult
def get_model_version_sets_output(compartment_id: Optional[pulumi.Input[str]] = None,
created_by: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datascience.GetModelVersionSetsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetModelVersionSetsResult]
func GetModelVersionSets(ctx *Context, args *GetModelVersionSetsArgs, opts ...InvokeOption) (*GetModelVersionSetsResult, error)
func GetModelVersionSetsOutput(ctx *Context, args *GetModelVersionSetsOutputArgs, opts ...InvokeOption) GetModelVersionSetsResultOutput
> Note: This function is named GetModelVersionSets
in the Go SDK.
public static class GetModelVersionSets
{
public static Task<GetModelVersionSetsResult> InvokeAsync(GetModelVersionSetsArgs args, InvokeOptions? opts = null)
public static Output<GetModelVersionSetsResult> Invoke(GetModelVersionSetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetModelVersionSetsResult> getModelVersionSets(GetModelVersionSetsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataScience/getModelVersionSets:getModelVersionSets
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string Filter results by the OCID of the compartment.
- Created
By string Filter results by the OCID of the user who created the resource.
- Filters
List<Get
Model Version Sets Filter> - Id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- Name string
A filter to return only resources that match the entire name given.
- Project
Id string Filter results by the OCID of the project.
- State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- Compartment
Id string Filter results by the OCID of the compartment.
- Created
By string Filter results by the OCID of the user who created the resource.
- Filters
[]Get
Model Version Sets Filter - Id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- Name string
A filter to return only resources that match the entire name given.
- Project
Id string Filter results by the OCID of the project.
- State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- compartment
Id String Filter results by the OCID of the compartment.
- created
By String Filter results by the OCID of the user who created the resource.
- filters
List<Get
Model Version Sets Filter> - id String
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name String
A filter to return only resources that match the entire name given.
- project
Id String Filter results by the OCID of the project.
- state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- compartment
Id string Filter results by the OCID of the compartment.
- created
By string Filter results by the OCID of the user who created the resource.
- filters
Get
Model Version Sets Filter[] - id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name string
A filter to return only resources that match the entire name given.
- project
Id string Filter results by the OCID of the project.
- state string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- compartment_
id str Filter results by the OCID of the compartment.
- created_
by str Filter results by the OCID of the user who created the resource.
- filters
Get
Model Version Sets Filter] - id str
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name str
A filter to return only resources that match the entire name given.
- project_
id str Filter results by the OCID of the project.
- state str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- compartment
Id String Filter results by the OCID of the compartment.
- created
By String Filter results by the OCID of the user who created the resource.
- filters List<Property Map>
- id String
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name String
A filter to return only resources that match the entire name given.
- project
Id String Filter results by the OCID of the project.
- state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
getModelVersionSets Result
The following output properties are available:
- Compartment
Id string The OCID of the model version set compartment.
- Model
Version List<GetSets Model Version Sets Model Version Set> The list of model_version_sets.
- Created
By string The OCID of the user who created the model version set.
- Filters
List<Get
Model Version Sets Filter> - Id string
The OCID of the model version set.
- Name string
A user-friendly name for the resource. It must be unique and can't be modified.
- Project
Id string The OCID of the project associated with the model version set.
- State string
The state of the model version set.
- Compartment
Id string The OCID of the model version set compartment.
- Model
Version []GetSets Model Version Sets Model Version Set The list of model_version_sets.
- Created
By string The OCID of the user who created the model version set.
- Filters
[]Get
Model Version Sets Filter - Id string
The OCID of the model version set.
- Name string
A user-friendly name for the resource. It must be unique and can't be modified.
- Project
Id string The OCID of the project associated with the model version set.
- State string
The state of the model version set.
- compartment
Id String The OCID of the model version set compartment.
- model
Version List<GetSets Model Version Sets Model Version Set> The list of model_version_sets.
- created
By String The OCID of the user who created the model version set.
- filters
List<Get
Model Version Sets Filter> - id String
The OCID of the model version set.
- name String
A user-friendly name for the resource. It must be unique and can't be modified.
- project
Id String The OCID of the project associated with the model version set.
- state String
The state of the model version set.
- compartment
Id string The OCID of the model version set compartment.
- model
Version GetSets Model Version Sets Model Version Set[] The list of model_version_sets.
- created
By string The OCID of the user who created the model version set.
- filters
Get
Model Version Sets Filter[] - id string
The OCID of the model version set.
- name string
A user-friendly name for the resource. It must be unique and can't be modified.
- project
Id string The OCID of the project associated with the model version set.
- state string
The state of the model version set.
- compartment_
id str The OCID of the model version set compartment.
- model_
version_ Getsets Model Version Sets Model Version Set] The list of model_version_sets.
- created_
by str The OCID of the user who created the model version set.
- filters
Get
Model Version Sets Filter] - id str
The OCID of the model version set.
- name str
A user-friendly name for the resource. It must be unique and can't be modified.
- project_
id str The OCID of the project associated with the model version set.
- state str
The state of the model version set.
- compartment
Id String The OCID of the model version set compartment.
- model
Version List<Property Map>Sets The list of model_version_sets.
- created
By String The OCID of the user who created the model version set.
- filters List<Property Map>
- id String
The OCID of the model version set.
- name String
A user-friendly name for the resource. It must be unique and can't be modified.
- project
Id String The OCID of the project associated with the model version set.
- state String
The state of the model version set.
Supporting Types
GetModelVersionSetsFilter
GetModelVersionSetsModelVersionSet
- Compartment
Id string Filter results by the OCID of the compartment.
- Created
By string Filter results by the OCID of the user who created the resource.
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
A short description of the model version set.
- Dictionary<string, object>
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- Name string
A filter to return only resources that match the entire name given.
- Project
Id string Filter results by the OCID of the project.
- State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- Time
Created string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Compartment
Id string Filter results by the OCID of the compartment.
- Created
By string Filter results by the OCID of the user who created the resource.
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
A short description of the model version set.
- map[string]interface{}
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- Name string
A filter to return only resources that match the entire name given.
- Project
Id string Filter results by the OCID of the project.
- State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- Time
Created string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- compartment
Id String Filter results by the OCID of the compartment.
- created
By String Filter results by the OCID of the user who created the resource.
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
A short description of the model version set.
- Map<String,Object>
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name String
A filter to return only resources that match the entire name given.
- project
Id String Filter results by the OCID of the project.
- state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- time
Created String The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated String The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- compartment
Id string Filter results by the OCID of the compartment.
- created
By string Filter results by the OCID of the user who created the resource.
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
A short description of the model version set.
- {[key: string]: any}
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name string
A filter to return only resources that match the entire name given.
- project
Id string Filter results by the OCID of the project.
- state string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- time
Created string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated string The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- compartment_
id str Filter results by the OCID of the compartment.
- created_
by str Filter results by the OCID of the user who created the resource.
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
A short description of the model version set.
- Mapping[str, Any]
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name str
A filter to return only resources that match the entire name given.
- project_
id str Filter results by the OCID of the project.
- state str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- time_
created str The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time_
updated str The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- compartment
Id String Filter results by the OCID of the compartment.
- created
By String Filter results by the OCID of the user who created the resource.
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
A short description of the model version set.
- Map<Any>
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
Filter results by OCID. Must be an OCID of the correct type for the resource type.
- name String
A filter to return only resources that match the entire name given.
- project
Id String Filter results by the OCID of the project.
- state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- time
Created String The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated String The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.