1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. AiVision
  5. StreamGroup
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.AiVision.StreamGroup

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This resource provides the Stream Group resource in Oracle Cloud Infrastructure Ai Vision service.

    Registration of new streamGroup

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testStreamGroup = new oci.aivision.StreamGroup("test_stream_group", {
        compartmentId: compartmentId,
        definedTags: streamGroupDefinedTags,
        displayName: streamGroupDisplayName,
        freeformTags: streamGroupFreeformTags,
        isEnabled: streamGroupIsEnabled,
        streamOverlaps: [{
            overlappingStreams: streamGroupStreamOverlapsOverlappingStreams,
        }],
        streamSourceIds: streamGroupStreamSourceIds,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_stream_group = oci.aivision.StreamGroup("test_stream_group",
        compartment_id=compartment_id,
        defined_tags=stream_group_defined_tags,
        display_name=stream_group_display_name,
        freeform_tags=stream_group_freeform_tags,
        is_enabled=stream_group_is_enabled,
        stream_overlaps=[{
            "overlapping_streams": stream_group_stream_overlaps_overlapping_streams,
        }],
        stream_source_ids=stream_group_stream_source_ids)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/aivision"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aivision.NewStreamGroup(ctx, "test_stream_group", &aivision.StreamGroupArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			DefinedTags:   pulumi.Any(streamGroupDefinedTags),
    			DisplayName:   pulumi.Any(streamGroupDisplayName),
    			FreeformTags:  pulumi.Any(streamGroupFreeformTags),
    			IsEnabled:     pulumi.Any(streamGroupIsEnabled),
    			StreamOverlaps: aivision.StreamGroupStreamOverlapArray{
    				&aivision.StreamGroupStreamOverlapArgs{
    					OverlappingStreams: pulumi.Any(streamGroupStreamOverlapsOverlappingStreams),
    				},
    			},
    			StreamSourceIds: pulumi.Any(streamGroupStreamSourceIds),
    		})
    		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 testStreamGroup = new Oci.AiVision.StreamGroup("test_stream_group", new()
        {
            CompartmentId = compartmentId,
            DefinedTags = streamGroupDefinedTags,
            DisplayName = streamGroupDisplayName,
            FreeformTags = streamGroupFreeformTags,
            IsEnabled = streamGroupIsEnabled,
            StreamOverlaps = new[]
            {
                new Oci.AiVision.Inputs.StreamGroupStreamOverlapArgs
                {
                    OverlappingStreams = streamGroupStreamOverlapsOverlappingStreams,
                },
            },
            StreamSourceIds = streamGroupStreamSourceIds,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.AiVision.StreamGroup;
    import com.pulumi.oci.AiVision.StreamGroupArgs;
    import com.pulumi.oci.AiVision.inputs.StreamGroupStreamOverlapArgs;
    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) {
            var testStreamGroup = new StreamGroup("testStreamGroup", StreamGroupArgs.builder()
                .compartmentId(compartmentId)
                .definedTags(streamGroupDefinedTags)
                .displayName(streamGroupDisplayName)
                .freeformTags(streamGroupFreeformTags)
                .isEnabled(streamGroupIsEnabled)
                .streamOverlaps(StreamGroupStreamOverlapArgs.builder()
                    .overlappingStreams(streamGroupStreamOverlapsOverlappingStreams)
                    .build())
                .streamSourceIds(streamGroupStreamSourceIds)
                .build());
    
        }
    }
    
    resources:
      testStreamGroup:
        type: oci:AiVision:StreamGroup
        name: test_stream_group
        properties:
          compartmentId: ${compartmentId}
          definedTags: ${streamGroupDefinedTags}
          displayName: ${streamGroupDisplayName}
          freeformTags: ${streamGroupFreeformTags}
          isEnabled: ${streamGroupIsEnabled}
          streamOverlaps:
            - overlappingStreams: ${streamGroupStreamOverlapsOverlappingStreams}
          streamSourceIds: ${streamGroupStreamSourceIds}
    

    Create StreamGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new StreamGroup(name: string, args: StreamGroupArgs, opts?: CustomResourceOptions);
    @overload
    def StreamGroup(resource_name: str,
                    args: StreamGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def StreamGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    compartment_id: Optional[str] = None,
                    defined_tags: Optional[Mapping[str, str]] = None,
                    display_name: Optional[str] = None,
                    freeform_tags: Optional[Mapping[str, str]] = None,
                    is_enabled: Optional[bool] = None,
                    stream_overlaps: Optional[Sequence[StreamGroupStreamOverlapArgs]] = None,
                    stream_source_ids: Optional[Sequence[str]] = None)
    func NewStreamGroup(ctx *Context, name string, args StreamGroupArgs, opts ...ResourceOption) (*StreamGroup, error)
    public StreamGroup(string name, StreamGroupArgs args, CustomResourceOptions? opts = null)
    public StreamGroup(String name, StreamGroupArgs args)
    public StreamGroup(String name, StreamGroupArgs args, CustomResourceOptions options)
    
    type: oci:AiVision:StreamGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args StreamGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args StreamGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args StreamGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StreamGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StreamGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var streamGroupResource = new Oci.AiVision.StreamGroup("streamGroupResource", new()
    {
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        IsEnabled = false,
        StreamOverlaps = new[]
        {
            new Oci.AiVision.Inputs.StreamGroupStreamOverlapArgs
            {
                OverlappingStreams = new[]
                {
                    "string",
                },
            },
        },
        StreamSourceIds = new[]
        {
            "string",
        },
    });
    
    example, err := aivision.NewStreamGroup(ctx, "streamGroupResource", &aivision.StreamGroupArgs{
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	IsEnabled: pulumi.Bool(false),
    	StreamOverlaps: aivision.StreamGroupStreamOverlapArray{
    		&aivision.StreamGroupStreamOverlapArgs{
    			OverlappingStreams: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	StreamSourceIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var streamGroupResource = new StreamGroup("streamGroupResource", StreamGroupArgs.builder()
        .compartmentId("string")
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .isEnabled(false)
        .streamOverlaps(StreamGroupStreamOverlapArgs.builder()
            .overlappingStreams("string")
            .build())
        .streamSourceIds("string")
        .build());
    
    stream_group_resource = oci.aivision.StreamGroup("streamGroupResource",
        compartment_id="string",
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        is_enabled=False,
        stream_overlaps=[{
            "overlapping_streams": ["string"],
        }],
        stream_source_ids=["string"])
    
    const streamGroupResource = new oci.aivision.StreamGroup("streamGroupResource", {
        compartmentId: "string",
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        isEnabled: false,
        streamOverlaps: [{
            overlappingStreams: ["string"],
        }],
        streamSourceIds: ["string"],
    });
    
    type: oci:AiVision:StreamGroup
    properties:
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        isEnabled: false
        streamOverlaps:
            - overlappingStreams:
                - string
        streamSourceIds:
            - string
    

    StreamGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The StreamGroup resource accepts the following input properties:

    CompartmentId string
    (Updatable) OCID of compartment
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    DisplayName string
    (Updatable) A human-friendly name for the streamGroup.
    FreeformTags Dictionary<string, string>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Stream
    StreamOverlaps List<StreamGroupStreamOverlap>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    StreamSourceIds List<string>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) OCID of compartment
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    DisplayName string
    (Updatable) A human-friendly name for the streamGroup.
    FreeformTags map[string]string
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Stream
    StreamOverlaps []StreamGroupStreamOverlapArgs
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    StreamSourceIds []string

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) OCID of compartment
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName String
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags Map<String,String>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Stream
    streamOverlaps List<StreamGroupStreamOverlap>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds List<String>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) OCID of compartment
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName string
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags {[key: string]: string}
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled boolean
    (Updatable) Stream
    streamOverlaps StreamGroupStreamOverlap[]
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds string[]

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) OCID of compartment
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    display_name str
    (Updatable) A human-friendly name for the streamGroup.
    freeform_tags Mapping[str, str]
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    is_enabled bool
    (Updatable) Stream
    stream_overlaps Sequence[StreamGroupStreamOverlapArgs]
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    stream_source_ids Sequence[str]

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) OCID of compartment
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName String
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags Map<String>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Stream
    streamOverlaps List<Property Map>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds List<String>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the StreamGroup resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the streamGroup.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the streamGroup.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the streamGroup.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated String
    When the streamGroup was updated, as an RFC3339 datetime string.
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    The current state of the streamGroup.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    The current state of the streamGroup.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    time_created str
    When the streamGroup was created, as an RFC3339 datetime string.
    time_updated str
    When the streamGroup was updated, as an RFC3339 datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the streamGroup.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated String
    When the streamGroup was updated, as an RFC3339 datetime string.

    Look up Existing StreamGroup Resource

    Get an existing StreamGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: StreamGroupState, opts?: CustomResourceOptions): StreamGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            is_enabled: Optional[bool] = None,
            state: Optional[str] = None,
            stream_overlaps: Optional[Sequence[StreamGroupStreamOverlapArgs]] = None,
            stream_source_ids: Optional[Sequence[str]] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> StreamGroup
    func GetStreamGroup(ctx *Context, name string, id IDInput, state *StreamGroupState, opts ...ResourceOption) (*StreamGroup, error)
    public static StreamGroup Get(string name, Input<string> id, StreamGroupState? state, CustomResourceOptions? opts = null)
    public static StreamGroup get(String name, Output<String> id, StreamGroupState state, CustomResourceOptions options)
    resources:  _:    type: oci:AiVision:StreamGroup    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) OCID of compartment
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    DisplayName string
    (Updatable) A human-friendly name for the streamGroup.
    FreeformTags Dictionary<string, string>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Stream
    State string
    The current state of the streamGroup.
    StreamOverlaps List<StreamGroupStreamOverlap>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    StreamSourceIds List<string>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    CompartmentId string
    (Updatable) OCID of compartment
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    DisplayName string
    (Updatable) A human-friendly name for the streamGroup.
    FreeformTags map[string]string
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Stream
    State string
    The current state of the streamGroup.
    StreamOverlaps []StreamGroupStreamOverlapArgs
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    StreamSourceIds []string

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    compartmentId String
    (Updatable) OCID of compartment
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName String
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags Map<String,String>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Stream
    state String
    The current state of the streamGroup.
    streamOverlaps List<StreamGroupStreamOverlap>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds List<String>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated String
    When the streamGroup was updated, as an RFC3339 datetime string.
    compartmentId string
    (Updatable) OCID of compartment
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName string
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags {[key: string]: string}
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled boolean
    (Updatable) Stream
    state string
    The current state of the streamGroup.
    streamOverlaps StreamGroupStreamOverlap[]
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds string[]

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated string
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated string
    When the streamGroup was updated, as an RFC3339 datetime string.
    compartment_id str
    (Updatable) OCID of compartment
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    display_name str
    (Updatable) A human-friendly name for the streamGroup.
    freeform_tags Mapping[str, str]
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    is_enabled bool
    (Updatable) Stream
    state str
    The current state of the streamGroup.
    stream_overlaps Sequence[StreamGroupStreamOverlapArgs]
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    stream_source_ids Sequence[str]

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    time_created str
    When the streamGroup was created, as an RFC3339 datetime string.
    time_updated str
    When the streamGroup was updated, as an RFC3339 datetime string.
    compartmentId String
    (Updatable) OCID of compartment
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    displayName String
    (Updatable) A human-friendly name for the streamGroup.
    freeformTags Map<String>
    (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Stream
    state String
    The current state of the streamGroup.
    streamOverlaps List<Property Map>
    (Updatable) List of streamSource OCIDs where the streamSource overlaps in field of view.
    streamSourceIds List<String>

    (Updatable) List of streamSource OCIDs associated with the stream group

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the streamGroup was created, as an RFC3339 datetime string.
    timeUpdated String
    When the streamGroup was updated, as an RFC3339 datetime string.

    Supporting Types

    StreamGroupStreamOverlap, StreamGroupStreamOverlapArgs

    OverlappingStreams List<string>
    (Updatable) List of streamSource OCIDs.
    OverlappingStreams []string
    (Updatable) List of streamSource OCIDs.
    overlappingStreams List<String>
    (Updatable) List of streamSource OCIDs.
    overlappingStreams string[]
    (Updatable) List of streamSource OCIDs.
    overlapping_streams Sequence[str]
    (Updatable) List of streamSource OCIDs.
    overlappingStreams List<String>
    (Updatable) List of streamSource OCIDs.

    Import

    StreamGroups can be imported using the id, e.g.

    $ pulumi import oci:AiVision/streamGroup:StreamGroup test_stream_group "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi