1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. GenerativeAi
  6. getHostedDeployments
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi

    This data source provides the list of Hosted Deployments in Oracle Cloud Infrastructure Generative AI service.

    Lists the hosted deployments in a specific compartment. Use applicationId to filter by parent; it accepts either an IAM-authenticated or non-IAM Hosted Application OCID.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testHostedDeployments = oci.generativeai.getHostedDeployments({
        compartmentId: compartmentId,
        applicationId: testApplication.id,
        displayName: hostedDeploymentDisplayName,
        id: hostedDeploymentId,
        state: hostedDeploymentState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_hosted_deployments = oci.generativeai.get_hosted_deployments(compartment_id=compartment_id,
        application_id=test_application["id"],
        display_name=hosted_deployment_display_name,
        id=hosted_deployment_id,
        state=hosted_deployment_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v5/go/oci/generativeai"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := generativeai.GetHostedDeployments(ctx, &generativeai.GetHostedDeploymentsArgs{
    			CompartmentId: compartmentId,
    			ApplicationId: pulumi.StringRef(testApplication.Id),
    			DisplayName:   pulumi.StringRef(hostedDeploymentDisplayName),
    			Id:            pulumi.StringRef(hostedDeploymentId),
    			State:         pulumi.StringRef(hostedDeploymentState),
    		}, 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 testHostedDeployments = Oci.GenerativeAi.GetHostedDeployments.Invoke(new()
        {
            CompartmentId = compartmentId,
            ApplicationId = testApplication.Id,
            DisplayName = hostedDeploymentDisplayName,
            Id = hostedDeploymentId,
            State = hostedDeploymentState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.GenerativeAi.GenerativeAiFunctions;
    import com.pulumi.oci.GenerativeAi.inputs.GetHostedDeploymentsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 testHostedDeployments = GenerativeAiFunctions.getHostedDeployments(GetHostedDeploymentsArgs.builder()
                .compartmentId(compartmentId)
                .applicationId(testApplication.id())
                .displayName(hostedDeploymentDisplayName)
                .id(hostedDeploymentId)
                .state(hostedDeploymentState)
                .build());
    
        }
    }
    
    variables:
      testHostedDeployments:
        fn::invoke:
          function: oci:GenerativeAi:getHostedDeployments
          arguments:
            compartmentId: ${compartmentId}
            applicationId: ${testApplication.id}
            displayName: ${hostedDeploymentDisplayName}
            id: ${hostedDeploymentId}
            state: ${hostedDeploymentState}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_generativeai_gethosteddeployments" "testHostedDeployments" {
      compartment_id = compartmentId
      application_id = testApplication.id
      display_name   = hostedDeploymentDisplayName
      id             = hostedDeploymentId
      state          = hostedDeploymentState
    }
    

    Using getHostedDeployments

    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 getHostedDeployments(args: GetHostedDeploymentsArgs, opts?: InvokeOptions): Promise<GetHostedDeploymentsResult>
    function getHostedDeploymentsOutput(args: GetHostedDeploymentsOutputArgs, opts?: InvokeOutputOptions): Output<GetHostedDeploymentsResult>
    def get_hosted_deployments(application_id: Optional[str] = None,
                               compartment_id: Optional[str] = None,
                               display_name: Optional[str] = None,
                               filters: Optional[Sequence[GetHostedDeploymentsFilter]] = None,
                               id: Optional[str] = None,
                               state: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetHostedDeploymentsResult
    def get_hosted_deployments_output(application_id: pulumi.Input[Optional[str]] = None,
                               compartment_id: pulumi.Input[Optional[str]] = None,
                               display_name: pulumi.Input[Optional[str]] = None,
                               filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetHostedDeploymentsFilterArgs]]]] = None,
                               id: pulumi.Input[Optional[str]] = None,
                               state: pulumi.Input[Optional[str]] = None,
                               opts: Optional[InvokeOutputOptions] = None) -> Output[GetHostedDeploymentsResult]
    func GetHostedDeployments(ctx *Context, args *GetHostedDeploymentsArgs, opts ...InvokeOption) (*GetHostedDeploymentsResult, error)
    func GetHostedDeploymentsOutput(ctx *Context, args *GetHostedDeploymentsOutputArgs, opts ...InvokeOption) GetHostedDeploymentsResultOutput

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

    public static class GetHostedDeployments 
    {
        public static Task<GetHostedDeploymentsResult> InvokeAsync(GetHostedDeploymentsArgs args, InvokeOptions? opts = null)
        public static Output<GetHostedDeploymentsResult> Invoke(GetHostedDeploymentsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetHostedDeploymentsResult> Invoke(GetHostedDeploymentsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetHostedDeploymentsResult> getHostedDeployments(GetHostedDeploymentsArgs args, InvokeOptions options)
    public static Output<GetHostedDeploymentsResult> getHostedDeployments(GetHostedDeploymentsArgs args, InvokeOptions options)
    public static Output<GetHostedDeploymentsResult> getHostedDeployments(GetHostedDeploymentsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:GenerativeAi/getHostedDeployments:getHostedDeployments
      arguments:
        # arguments dictionary
    data "oci_generative_ai_get_hosted_deployments" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    ApplicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetHostedDeploymentsFilter>
    Id string
    The OCID of the hosted deployment.
    State string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    ApplicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetHostedDeploymentsFilter
    Id string
    The OCID of the hosted deployment.
    State string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    compartment_id string
    The OCID of the compartment in which to list resources.
    application_id string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    display_name string
    A filter to return only resources that match the given display name exactly.
    filters list(object)
    id string
    The OCID of the hosted deployment.
    state string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    compartmentId String
    The OCID of the compartment in which to list resources.
    applicationId String
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetHostedDeploymentsFilter>
    id String
    The OCID of the hosted deployment.
    state String
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    compartmentId string
    The OCID of the compartment in which to list resources.
    applicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetHostedDeploymentsFilter[]
    id string
    The OCID of the hosted deployment.
    state string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    compartment_id str
    The OCID of the compartment in which to list resources.
    application_id str
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetHostedDeploymentsFilter]
    id str
    The OCID of the hosted deployment.
    state str
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    compartmentId String
    The OCID of the compartment in which to list resources.
    applicationId String
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    id String
    The OCID of the hosted deployment.
    state String
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.

    getHostedDeployments Result

    The following output properties are available:

    CompartmentId string
    The compartment OCID to create the hosted application in.
    HostedDeploymentCollections List<GetHostedDeploymentsHostedDeploymentCollection>
    The list of hosted_deployment_collection.
    ApplicationId string
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters List<GetHostedDeploymentsFilter>
    Id string
    The OCID of the hosted deployment.
    State string
    The current state of the hosted deployment.
    CompartmentId string
    The compartment OCID to create the hosted application in.
    HostedDeploymentCollections []GetHostedDeploymentsHostedDeploymentCollection
    The list of hosted_deployment_collection.
    ApplicationId string
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters []GetHostedDeploymentsFilter
    Id string
    The OCID of the hosted deployment.
    State string
    The current state of the hosted deployment.
    compartment_id string
    The compartment OCID to create the hosted application in.
    hosted_deployment_collections list(object)
    The list of hosted_deployment_collection.
    application_id string
    display_name string
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters list(object)
    id string
    The OCID of the hosted deployment.
    state string
    The current state of the hosted deployment.
    compartmentId String
    The compartment OCID to create the hosted application in.
    hostedDeploymentCollections List<GetHostedDeploymentsHostedDeploymentCollection>
    The list of hosted_deployment_collection.
    applicationId String
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<GetHostedDeploymentsFilter>
    id String
    The OCID of the hosted deployment.
    state String
    The current state of the hosted deployment.
    compartmentId string
    The compartment OCID to create the hosted application in.
    hostedDeploymentCollections GetHostedDeploymentsHostedDeploymentCollection[]
    The list of hosted_deployment_collection.
    applicationId string
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters GetHostedDeploymentsFilter[]
    id string
    The OCID of the hosted deployment.
    state string
    The current state of the hosted deployment.
    compartment_id str
    The compartment OCID to create the hosted application in.
    hosted_deployment_collections Sequence[GetHostedDeploymentsHostedDeploymentCollection]
    The list of hosted_deployment_collection.
    application_id str
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters Sequence[GetHostedDeploymentsFilter]
    id str
    The OCID of the hosted deployment.
    state str
    The current state of the hosted deployment.
    compartmentId String
    The compartment OCID to create the hosted application in.
    hostedDeploymentCollections List<Property Map>
    The list of hosted_deployment_collection.
    applicationId String
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<Property Map>
    id String
    The OCID of the hosted deployment.
    state String
    The current state of the hosted deployment.

    Supporting Types

    GetHostedDeploymentsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetHostedDeploymentsHostedDeploymentCollection

    GetHostedDeploymentsHostedDeploymentCollectionItem

    ActiveArtifacts List<GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact>
    Container/artifact configuration for the deployment.
    Artifacts List<GetHostedDeploymentsHostedDeploymentCollectionItemArtifact>
    array of Artifacts.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    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. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HostedApplicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    Id string
    The OCID of the hosted deployment.
    State string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    TimeUpdated string
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    ActiveArtifacts []GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact
    Container/artifact configuration for the deployment.
    Artifacts []GetHostedDeploymentsHostedDeploymentCollectionItemArtifact
    array of Artifacts.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    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. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HostedApplicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    Id string
    The OCID of the hosted deployment.
    State string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    TimeUpdated string
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    active_artifacts list(object)
    Container/artifact configuration for the deployment.
    artifacts list(object)
    array of Artifacts.
    compartment_id string
    The OCID of the compartment in which to list resources.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name string
    A filter to return only resources that match the given display name exactly.
    freeform_tags map(string)
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hosted_application_id string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    id string
    The OCID of the hosted deployment.
    state string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    system_tags map(string)
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    time_updated string
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    activeArtifacts List<GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact>
    Container/artifact configuration for the deployment.
    artifacts List<GetHostedDeploymentsHostedDeploymentCollectionItemArtifact>
    array of Artifacts.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    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. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostedApplicationId String
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    id String
    The OCID of the hosted deployment.
    state String
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    timeUpdated String
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    activeArtifacts GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact[]
    Container/artifact configuration for the deployment.
    artifacts GetHostedDeploymentsHostedDeploymentCollectionItemArtifact[]
    array of Artifacts.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    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. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostedApplicationId string
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    id string
    The OCID of the hosted deployment.
    state string
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    timeUpdated string
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    active_artifacts Sequence[GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact]
    Container/artifact configuration for the deployment.
    artifacts Sequence[GetHostedDeploymentsHostedDeploymentCollectionItemArtifact]
    array of Artifacts.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    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. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hosted_application_id str
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    id str
    The OCID of the hosted deployment.
    state str
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    time_updated str
    The date and time the hosted deployment was updated, in the format defined by RFC 3339
    activeArtifacts List<Property Map>
    Container/artifact configuration for the deployment.
    artifacts List<Property Map>
    array of Artifacts.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostedApplicationId String
    The OCID of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application.
    id String
    The OCID of the hosted deployment.
    state String
    A filter to return only the hosted deployments that their lifecycle state matches the given lifecycle state.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    timeUpdated String
    The date and time the hosted deployment was updated, in the format defined by RFC 3339

    GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact

    ArtifactType string
    The type of the artifact.
    ContainerUri string
    image url.
    HostedDeploymentId string
    The OCID of the application.
    Id string
    The OCID of the hosted deployment.
    IsVulnerabilityScanRequired bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    Status string
    The current status of the artifact.
    Tag string
    image tag.
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    ArtifactType string
    The type of the artifact.
    ContainerUri string
    image url.
    HostedDeploymentId string
    The OCID of the application.
    Id string
    The OCID of the hosted deployment.
    IsVulnerabilityScanRequired bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    Status string
    The current status of the artifact.
    Tag string
    image tag.
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifact_type string
    The type of the artifact.
    container_uri string
    image url.
    hosted_deployment_id string
    The OCID of the application.
    id string
    The OCID of the hosted deployment.
    is_vulnerability_scan_required bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status string
    The current status of the artifact.
    tag string
    image tag.
    time_created string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType String
    The type of the artifact.
    containerUri String
    image url.
    hostedDeploymentId String
    The OCID of the application.
    id String
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired Boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status String
    The current status of the artifact.
    tag String
    image tag.
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType string
    The type of the artifact.
    containerUri string
    image url.
    hostedDeploymentId string
    The OCID of the application.
    id string
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status string
    The current status of the artifact.
    tag string
    image tag.
    timeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifact_type str
    The type of the artifact.
    container_uri str
    image url.
    hosted_deployment_id str
    The OCID of the application.
    id str
    The OCID of the hosted deployment.
    is_vulnerability_scan_required bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status str
    The current status of the artifact.
    tag str
    image tag.
    time_created str
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType String
    The type of the artifact.
    containerUri String
    image url.
    hostedDeploymentId String
    The OCID of the application.
    id String
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired Boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status String
    The current status of the artifact.
    tag String
    image tag.
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339

    GetHostedDeploymentsHostedDeploymentCollectionItemArtifact

    ArtifactType string
    The type of the artifact.
    ContainerUri string
    image url.
    HostedDeploymentId string
    The OCID of the application.
    Id string
    The OCID of the hosted deployment.
    IsVulnerabilityScanRequired bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    Status string
    The current status of the artifact.
    Tag string
    image tag.
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    ArtifactType string
    The type of the artifact.
    ContainerUri string
    image url.
    HostedDeploymentId string
    The OCID of the application.
    Id string
    The OCID of the hosted deployment.
    IsVulnerabilityScanRequired bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    Status string
    The current status of the artifact.
    Tag string
    image tag.
    TimeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifact_type string
    The type of the artifact.
    container_uri string
    image url.
    hosted_deployment_id string
    The OCID of the application.
    id string
    The OCID of the hosted deployment.
    is_vulnerability_scan_required bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status string
    The current status of the artifact.
    tag string
    image tag.
    time_created string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType String
    The type of the artifact.
    containerUri String
    image url.
    hostedDeploymentId String
    The OCID of the application.
    id String
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired Boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status String
    The current status of the artifact.
    tag String
    image tag.
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType string
    The type of the artifact.
    containerUri string
    image url.
    hostedDeploymentId string
    The OCID of the application.
    id string
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status string
    The current status of the artifact.
    tag string
    image tag.
    timeCreated string
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifact_type str
    The type of the artifact.
    container_uri str
    image url.
    hosted_deployment_id str
    The OCID of the application.
    id str
    The OCID of the hosted deployment.
    is_vulnerability_scan_required bool
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status str
    The current status of the artifact.
    tag str
    image tag.
    time_created str
    The date and time the hosted deployment was created, in the format defined by RFC 3339
    artifactType String
    The type of the artifact.
    containerUri String
    image url.
    hostedDeploymentId String
    The OCID of the application.
    id String
    The OCID of the hosted deployment.
    isVulnerabilityScanRequired Boolean
    Optional flag that requires an Oracle Cloud Infrastructure Vulnerability Scanning Service compliance report for this artifact before it can become active. When not provided, the value defaults to false and the artifact is not blocked on a scan result.
    status String
    The current status of the artifact.
    tag String
    image tag.
    timeCreated String
    The date and time the hosted deployment was created, in the format defined by RFC 3339

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo oci logo
    Viewing docs for Oracle Cloud Infrastructure v5.0.0
    published on Thursday, Sep 17, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial