Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 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/v4/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 dictionarydata "oci_generative_ai_get_hosted_deployments" "name" {
# arguments
}The following arguments are supported:
- 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<Get
Hosted Deployments Filter> - 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
[]Get
Hosted Deployments Filter - 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.
- 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<Get
Hosted Deployments Filter> - 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
Get
Hosted Deployments Filter[] - 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[Get
Hosted Deployments Filter] - 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.
- 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<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:
- Compartment
Id string - The compartment OCID to create the hosted application in.
- Hosted
Deployment List<GetCollections Hosted Deployments Hosted Deployment Collection> - 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<Get
Hosted Deployments Filter> - 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 []GetCollections Hosted Deployments Hosted Deployment Collection - 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
[]Get
Hosted Deployments Filter - 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_ list(object)collections - 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.
- compartment
Id String - The compartment OCID to create the hosted application in.
- hosted
Deployment List<GetCollections Hosted Deployments Hosted Deployment Collection> - 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<Get
Hosted Deployments Filter> - 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 GetCollections Hosted Deployments Hosted Deployment Collection[] - 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
Get
Hosted Deployments Filter[] - 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_ Sequence[Getcollections Hosted Deployments Hosted Deployment Collection] - 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[Get
Hosted Deployments Filter] - id str
- The OCID of the hosted deployment.
- state str
- The current state of the hosted deployment.
- compartment
Id String - The compartment OCID to create the hosted application in.
- hosted
Deployment List<Property Map>Collections - 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<Property Map>
- id String
- The OCID of the hosted deployment.
- state String
- The current state of the hosted deployment.
Supporting Types
GetHostedDeploymentsFilter
GetHostedDeploymentsHostedDeploymentCollection
GetHostedDeploymentsHostedDeploymentCollectionItem
- Active
Artifacts List<GetHosted Deployments Hosted Deployment Collection Item Active Artifact> - Container/artifact configuration for the deployment.
- Artifacts
List<Get
Hosted Deployments Hosted Deployment Collection Item Artifact> - array of Artifacts.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- 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"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- 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"} - Hosted
Application stringId - 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.
- Dictionary<string, 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
- Active
Artifacts []GetHosted Deployments Hosted Deployment Collection Item Active Artifact - Container/artifact configuration for the deployment.
- Artifacts
[]Get
Hosted Deployments Hosted Deployment Collection Item Artifact - array of Artifacts.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- 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"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- 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"} - Hosted
Application stringId - 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.
- map[string]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
- 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.
- 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.
- 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_ stringid - 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.
- 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
- active
Artifacts List<GetHosted Deployments Hosted Deployment Collection Item Active Artifact> - Container/artifact configuration for the deployment.
- artifacts
List<Get
Hosted Deployments Hosted Deployment Collection Item Artifact> - array of Artifacts.
- compartment
Id String - The OCID of the compartment in which to list resources.
- 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"} - display
Name String - A filter to return only resources that match the given display name exactly.
- 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"} - hosted
Application StringId - 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.
- Map<String,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
- active
Artifacts GetHosted Deployments Hosted Deployment Collection Item Active Artifact[] - Container/artifact configuration for the deployment.
- artifacts
Get
Hosted Deployments Hosted Deployment Collection Item Artifact[] - array of Artifacts.
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[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"} - display
Name string - A filter to return only resources that match the given display name exactly.
- {[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"} - hosted
Application stringId - 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.
- {[key: string]: 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
- active_
artifacts Sequence[GetHosted Deployments Hosted Deployment Collection Item Active Artifact] - Container/artifact configuration for the deployment.
- artifacts
Sequence[Get
Hosted Deployments Hosted Deployment Collection Item Artifact] - array of Artifacts.
- compartment_
id str - The OCID of the compartment in which to list resources.
- 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.
- 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_ strid - 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.
- 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
- active
Artifacts List<Property Map> - Container/artifact configuration for the deployment.
- artifacts List<Property Map>
- array of Artifacts.
- compartment
Id String - The OCID of the compartment in which to list resources.
- 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.
- 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 StringId - 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.
- 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
GetHostedDeploymentsHostedDeploymentCollectionItemActiveArtifact
- Artifact
Type string - The type of the artifact.
- Container
Uri string - image url.
- Hosted
Deployment stringId - The OCID of the application.
- Id string
- The OCID of the hosted deployment.
- Is
Vulnerability boolScan Required - 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
- Artifact
Type string - The type of the artifact.
- Container
Uri string - image url.
- Hosted
Deployment stringId - The OCID of the application.
- Id string
- The OCID of the hosted deployment.
- Is
Vulnerability boolScan Required - 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
- artifact_
type string - The type of the artifact.
- container_
uri string - image url.
- hosted_
deployment_ stringid - The OCID of the application.
- id string
- The OCID of the hosted deployment.
- is_
vulnerability_ boolscan_ required - 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
- artifact
Type String - The type of the artifact.
- container
Uri String - image url.
- hosted
Deployment StringId - The OCID of the application.
- id String
- The OCID of the hosted deployment.
- is
Vulnerability BooleanScan Required - 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
- artifact
Type string - The type of the artifact.
- container
Uri string - image url.
- hosted
Deployment stringId - The OCID of the application.
- id string
- The OCID of the hosted deployment.
- is
Vulnerability booleanScan Required - 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
- artifact_
type str - The type of the artifact.
- container_
uri str - image url.
- hosted_
deployment_ strid - The OCID of the application.
- id str
- The OCID of the hosted deployment.
- is_
vulnerability_ boolscan_ required - 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
- artifact
Type String - The type of the artifact.
- container
Uri String - image url.
- hosted
Deployment StringId - The OCID of the application.
- id String
- The OCID of the hosted deployment.
- is
Vulnerability BooleanScan Required - 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
GetHostedDeploymentsHostedDeploymentCollectionItemArtifact
- Artifact
Type string - The type of the artifact.
- Container
Uri string - image url.
- Hosted
Deployment stringId - The OCID of the application.
- Id string
- The OCID of the hosted deployment.
- Is
Vulnerability boolScan Required - 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
- Artifact
Type string - The type of the artifact.
- Container
Uri string - image url.
- Hosted
Deployment stringId - The OCID of the application.
- Id string
- The OCID of the hosted deployment.
- Is
Vulnerability boolScan Required - 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
- artifact_
type string - The type of the artifact.
- container_
uri string - image url.
- hosted_
deployment_ stringid - The OCID of the application.
- id string
- The OCID of the hosted deployment.
- is_
vulnerability_ boolscan_ required - 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
- artifact
Type String - The type of the artifact.
- container
Uri String - image url.
- hosted
Deployment StringId - The OCID of the application.
- id String
- The OCID of the hosted deployment.
- is
Vulnerability BooleanScan Required - 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
- artifact
Type string - The type of the artifact.
- container
Uri string - image url.
- hosted
Deployment stringId - The OCID of the application.
- id string
- The OCID of the hosted deployment.
- is
Vulnerability booleanScan Required - 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
- artifact_
type str - The type of the artifact.
- container_
uri str - image url.
- hosted_
deployment_ strid - The OCID of the application.
- id str
- The OCID of the hosted deployment.
- is_
vulnerability_ boolscan_ required - 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
- artifact
Type String - The type of the artifact.
- container
Uri String - image url.
- hosted
Deployment StringId - The OCID of the application.
- id String
- The OCID of the hosted deployment.
- is
Vulnerability BooleanScan Required - 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
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi