1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. MediaServices
  5. StreamDistributionChannel
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.MediaServices.StreamDistributionChannel

Explore with Pulumi AI

This resource provides the Stream Distribution Channel resource in Oracle Cloud Infrastructure Media Services service.

Creates a new Stream Distribution Channel.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testStreamDistributionChannel = new oci.mediaservices.StreamDistributionChannel("test_stream_distribution_channel", {
    compartmentId: compartmentId,
    displayName: streamDistributionChannelDisplayName,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    locks: [{
        compartmentId: compartmentId,
        type: streamDistributionChannelLocksType,
        message: streamDistributionChannelLocksMessage,
        relatedResourceId: testResource.id,
        timeCreated: streamDistributionChannelLocksTimeCreated,
    }],
});
Copy
import pulumi
import pulumi_oci as oci

test_stream_distribution_channel = oci.media_services.StreamDistributionChannel("test_stream_distribution_channel",
    compartment_id=compartment_id,
    display_name=stream_distribution_channel_display_name,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    locks=[{
        "compartment_id": compartment_id,
        "type": stream_distribution_channel_locks_type,
        "message": stream_distribution_channel_locks_message,
        "related_resource_id": test_resource["id"],
        "time_created": stream_distribution_channel_locks_time_created,
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mediaservices"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mediaservices.NewStreamDistributionChannel(ctx, "test_stream_distribution_channel", &mediaservices.StreamDistributionChannelArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(streamDistributionChannelDisplayName),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			Locks: mediaservices.StreamDistributionChannelLockArray{
				&mediaservices.StreamDistributionChannelLockArgs{
					CompartmentId:     pulumi.Any(compartmentId),
					Type:              pulumi.Any(streamDistributionChannelLocksType),
					Message:           pulumi.Any(streamDistributionChannelLocksMessage),
					RelatedResourceId: pulumi.Any(testResource.Id),
					TimeCreated:       pulumi.Any(streamDistributionChannelLocksTimeCreated),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testStreamDistributionChannel = new Oci.MediaServices.StreamDistributionChannel("test_stream_distribution_channel", new()
    {
        CompartmentId = compartmentId,
        DisplayName = streamDistributionChannelDisplayName,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        Locks = new[]
        {
            new Oci.MediaServices.Inputs.StreamDistributionChannelLockArgs
            {
                CompartmentId = compartmentId,
                Type = streamDistributionChannelLocksType,
                Message = streamDistributionChannelLocksMessage,
                RelatedResourceId = testResource.Id,
                TimeCreated = streamDistributionChannelLocksTimeCreated,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.MediaServices.StreamDistributionChannel;
import com.pulumi.oci.MediaServices.StreamDistributionChannelArgs;
import com.pulumi.oci.MediaServices.inputs.StreamDistributionChannelLockArgs;
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 testStreamDistributionChannel = new StreamDistributionChannel("testStreamDistributionChannel", StreamDistributionChannelArgs.builder()
            .compartmentId(compartmentId)
            .displayName(streamDistributionChannelDisplayName)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .locks(StreamDistributionChannelLockArgs.builder()
                .compartmentId(compartmentId)
                .type(streamDistributionChannelLocksType)
                .message(streamDistributionChannelLocksMessage)
                .relatedResourceId(testResource.id())
                .timeCreated(streamDistributionChannelLocksTimeCreated)
                .build())
            .build());

    }
}
Copy
resources:
  testStreamDistributionChannel:
    type: oci:MediaServices:StreamDistributionChannel
    name: test_stream_distribution_channel
    properties:
      compartmentId: ${compartmentId}
      displayName: ${streamDistributionChannelDisplayName}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      locks:
        - compartmentId: ${compartmentId}
          type: ${streamDistributionChannelLocksType}
          message: ${streamDistributionChannelLocksMessage}
          relatedResourceId: ${testResource.id}
          timeCreated: ${streamDistributionChannelLocksTimeCreated}
Copy

Create StreamDistributionChannel Resource

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

Constructor syntax

new StreamDistributionChannel(name: string, args: StreamDistributionChannelArgs, opts?: CustomResourceOptions);
@overload
def StreamDistributionChannel(resource_name: str,
                              args: StreamDistributionChannelArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def StreamDistributionChannel(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              compartment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              defined_tags: Optional[Mapping[str, str]] = None,
                              freeform_tags: Optional[Mapping[str, str]] = None,
                              is_lock_override: Optional[bool] = None,
                              locks: Optional[Sequence[_mediaservices.StreamDistributionChannelLockArgs]] = None)
func NewStreamDistributionChannel(ctx *Context, name string, args StreamDistributionChannelArgs, opts ...ResourceOption) (*StreamDistributionChannel, error)
public StreamDistributionChannel(string name, StreamDistributionChannelArgs args, CustomResourceOptions? opts = null)
public StreamDistributionChannel(String name, StreamDistributionChannelArgs args)
public StreamDistributionChannel(String name, StreamDistributionChannelArgs args, CustomResourceOptions options)
type: oci:MediaServices:StreamDistributionChannel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StreamDistributionChannelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StreamDistributionChannelArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StreamDistributionChannelArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StreamDistributionChannelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StreamDistributionChannelArgs
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 streamDistributionChannelResource = new Oci.MediaServices.StreamDistributionChannel("streamDistributionChannelResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    IsLockOverride = false,
    Locks = new[]
    {
        new Oci.MediaServices.Inputs.StreamDistributionChannelLockArgs
        {
            CompartmentId = "string",
            Type = "string",
            Message = "string",
            RelatedResourceId = "string",
            TimeCreated = "string",
        },
    },
});
Copy
example, err := MediaServices.NewStreamDistributionChannel(ctx, "streamDistributionChannelResource", &MediaServices.StreamDistributionChannelArgs{
	CompartmentId: pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	IsLockOverride: pulumi.Bool(false),
	Locks: mediaservices.StreamDistributionChannelLockArray{
		&mediaservices.StreamDistributionChannelLockArgs{
			CompartmentId:     pulumi.String("string"),
			Type:              pulumi.String("string"),
			Message:           pulumi.String("string"),
			RelatedResourceId: pulumi.String("string"),
			TimeCreated:       pulumi.String("string"),
		},
	},
})
Copy
var streamDistributionChannelResource = new StreamDistributionChannel("streamDistributionChannelResource", StreamDistributionChannelArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .isLockOverride(false)
    .locks(StreamDistributionChannelLockArgs.builder()
        .compartmentId("string")
        .type("string")
        .message("string")
        .relatedResourceId("string")
        .timeCreated("string")
        .build())
    .build());
Copy
stream_distribution_channel_resource = oci.media_services.StreamDistributionChannel("streamDistributionChannelResource",
    compartment_id="string",
    display_name="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    is_lock_override=False,
    locks=[{
        "compartment_id": "string",
        "type": "string",
        "message": "string",
        "related_resource_id": "string",
        "time_created": "string",
    }])
Copy
const streamDistributionChannelResource = new oci.mediaservices.StreamDistributionChannel("streamDistributionChannelResource", {
    compartmentId: "string",
    displayName: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    isLockOverride: false,
    locks: [{
        compartmentId: "string",
        type: "string",
        message: "string",
        relatedResourceId: "string",
        timeCreated: "string",
    }],
});
Copy
type: oci:MediaServices:StreamDistributionChannel
properties:
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    isLockOverride: false
    locks:
        - compartmentId: string
          message: string
          relatedResourceId: string
          timeCreated: string
          type: string
Copy

StreamDistributionChannel 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 StreamDistributionChannel resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) Compartment Identifier.
DisplayName This property is required. string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsLockOverride bool
Locks Changes to this property will trigger replacement. List<StreamDistributionChannelLock>
Locks associated with this resource.
CompartmentId This property is required. string
(Updatable) Compartment Identifier.
DisplayName This property is required. string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsLockOverride bool
Locks Changes to this property will trigger replacement. []StreamDistributionChannelLockArgs
Locks associated with this resource.
compartmentId This property is required. String
(Updatable) Compartment Identifier.
displayName This property is required. String
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride Boolean
locks Changes to this property will trigger replacement. List<StreamDistributionChannelLock>
Locks associated with this resource.
compartmentId This property is required. string
(Updatable) Compartment Identifier.
displayName This property is required. string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride boolean
locks Changes to this property will trigger replacement. StreamDistributionChannelLock[]
Locks associated with this resource.
compartment_id This property is required. str
(Updatable) Compartment Identifier.
display_name This property is required. str
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
is_lock_override bool
locks Changes to this property will trigger replacement. Sequence[mediaservices.StreamDistributionChannelLockArgs]
Locks associated with this resource.
compartmentId This property is required. String
(Updatable) Compartment Identifier.
displayName This property is required. String
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride Boolean
locks Changes to this property will trigger replacement. List<Property Map>
Locks associated with this resource.

Outputs

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

DomainName string
Unique domain name of the Distribution Channel.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the Stream Distribution Channel.
SystemTags Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
DomainName string
Unique domain name of the Distribution Channel.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the Stream Distribution Channel.
SystemTags map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
domainName String
Unique domain name of the Distribution Channel.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the Stream Distribution Channel.
systemTags Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
domainName string
Unique domain name of the Distribution Channel.
id string
The provider-assigned unique ID for this managed resource.
state string
The current state of the Stream Distribution Channel.
systemTags {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
domain_name str
Unique domain name of the Distribution Channel.
id str
The provider-assigned unique ID for this managed resource.
state str
The current state of the Stream Distribution Channel.
system_tags Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
time_updated str
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
domainName String
Unique domain name of the Distribution Channel.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the Stream Distribution Channel.
systemTags Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.

Look up Existing StreamDistributionChannel Resource

Get an existing StreamDistributionChannel 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?: StreamDistributionChannelState, opts?: CustomResourceOptions): StreamDistributionChannel
@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,
        domain_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_lock_override: Optional[bool] = None,
        locks: Optional[Sequence[_mediaservices.StreamDistributionChannelLockArgs]] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> StreamDistributionChannel
func GetStreamDistributionChannel(ctx *Context, name string, id IDInput, state *StreamDistributionChannelState, opts ...ResourceOption) (*StreamDistributionChannel, error)
public static StreamDistributionChannel Get(string name, Input<string> id, StreamDistributionChannelState? state, CustomResourceOptions? opts = null)
public static StreamDistributionChannel get(String name, Output<String> id, StreamDistributionChannelState state, CustomResourceOptions options)
resources:  _:    type: oci:MediaServices:StreamDistributionChannel    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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) Compartment Identifier.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
DomainName string
Unique domain name of the Distribution Channel.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsLockOverride bool
Locks Changes to this property will trigger replacement. List<StreamDistributionChannelLock>
Locks associated with this resource.
State string
The current state of the Stream Distribution Channel.
SystemTags Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
CompartmentId string
(Updatable) Compartment Identifier.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
DomainName string
Unique domain name of the Distribution Channel.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsLockOverride bool
Locks Changes to this property will trigger replacement. []StreamDistributionChannelLockArgs
Locks associated with this resource.
State string
The current state of the Stream Distribution Channel.
SystemTags map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
compartmentId String
(Updatable) Compartment Identifier.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
domainName String
Unique domain name of the Distribution Channel.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride Boolean
locks Changes to this property will trigger replacement. List<StreamDistributionChannelLock>
Locks associated with this resource.
state String
The current state of the Stream Distribution Channel.
systemTags Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
compartmentId string
(Updatable) Compartment Identifier.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
domainName string
Unique domain name of the Distribution Channel.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride boolean
locks Changes to this property will trigger replacement. StreamDistributionChannelLock[]
Locks associated with this resource.
state string
The current state of the Stream Distribution Channel.
systemTags {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated string
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
compartment_id str
(Updatable) Compartment Identifier.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
domain_name str
Unique domain name of the Distribution Channel.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
is_lock_override bool
locks Changes to this property will trigger replacement. Sequence[mediaservices.StreamDistributionChannelLockArgs]
Locks associated with this resource.
state str
The current state of the Stream Distribution Channel.
system_tags Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
time_updated str
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.
compartmentId String
(Updatable) Compartment Identifier.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) Stream Distribution Channel display name. Avoid entering confidential information.
domainName String
Unique domain name of the Distribution Channel.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isLockOverride Boolean
locks Changes to this property will trigger replacement. List<Property Map>
Locks associated with this resource.
state String
The current state of the Stream Distribution Channel.
systemTags Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.

Supporting Types

StreamDistributionChannelLock
, StreamDistributionChannelLockArgs

CompartmentId This property is required. string
(Updatable) The compartment ID of the lock.
Type
This property is required.
Changes to this property will trigger replacement.
string

Type of the lock.

** 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

Message Changes to this property will trigger replacement. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId Changes to this property will trigger replacement. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated Changes to this property will trigger replacement. string
When the lock was created.
CompartmentId This property is required. string
(Updatable) The compartment ID of the lock.
Type
This property is required.
Changes to this property will trigger replacement.
string

Type of the lock.

** 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

Message Changes to this property will trigger replacement. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId Changes to this property will trigger replacement. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated Changes to this property will trigger replacement. string
When the lock was created.
compartmentId This property is required. String
(Updatable) The compartment ID of the lock.
type
This property is required.
Changes to this property will trigger replacement.
String

Type of the lock.

** 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

message Changes to this property will trigger replacement. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId Changes to this property will trigger replacement. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated Changes to this property will trigger replacement. String
When the lock was created.
compartmentId This property is required. string
(Updatable) The compartment ID of the lock.
type
This property is required.
Changes to this property will trigger replacement.
string

Type of the lock.

** 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

message Changes to this property will trigger replacement. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId Changes to this property will trigger replacement. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated Changes to this property will trigger replacement. string
When the lock was created.
compartment_id This property is required. str
(Updatable) The compartment ID of the lock.
type
This property is required.
Changes to this property will trigger replacement.
str

Type of the lock.

** 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

message Changes to this property will trigger replacement. str
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
related_resource_id Changes to this property will trigger replacement. str
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
time_created Changes to this property will trigger replacement. str
When the lock was created.
compartmentId This property is required. String
(Updatable) The compartment ID of the lock.
type
This property is required.
Changes to this property will trigger replacement.
String

Type of the lock.

** 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

message Changes to this property will trigger replacement. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId Changes to this property will trigger replacement. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated Changes to this property will trigger replacement. String
When the lock was created.

Import

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

$ pulumi import oci:MediaServices/streamDistributionChannel:StreamDistributionChannel test_stream_distribution_channel "id"
Copy

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.