1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. MediaServices
  5. getStreamDistributionChannels
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.MediaServices.getStreamDistributionChannels

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

    This data source provides the list of Stream Distribution Channels in Oracle Cloud Infrastructure Media Services service.

    Lists the Stream Distribution Channels.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testStreamDistributionChannels = oci.MediaServices.getStreamDistributionChannels({
        compartmentId: _var.compartment_id,
        displayName: _var.stream_distribution_channel_display_name,
        id: _var.stream_distribution_channel_id,
        state: _var.stream_distribution_channel_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_stream_distribution_channels = oci.MediaServices.get_stream_distribution_channels(compartment_id=var["compartment_id"],
        display_name=var["stream_distribution_channel_display_name"],
        id=var["stream_distribution_channel_id"],
        state=var["stream_distribution_channel_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/MediaServices"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := MediaServices.GetStreamDistributionChannels(ctx, &mediaservices.GetStreamDistributionChannelsArgs{
    			CompartmentId: pulumi.StringRef(_var.Compartment_id),
    			DisplayName:   pulumi.StringRef(_var.Stream_distribution_channel_display_name),
    			Id:            pulumi.StringRef(_var.Stream_distribution_channel_id),
    			State:         pulumi.StringRef(_var.Stream_distribution_channel_state),
    		}, 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 testStreamDistributionChannels = Oci.MediaServices.GetStreamDistributionChannels.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Stream_distribution_channel_display_name,
            Id = @var.Stream_distribution_channel_id,
            State = @var.Stream_distribution_channel_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.MediaServices.MediaServicesFunctions;
    import com.pulumi.oci.MediaServices.inputs.GetStreamDistributionChannelsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testStreamDistributionChannels = MediaServicesFunctions.getStreamDistributionChannels(GetStreamDistributionChannelsArgs.builder()
                .compartmentId(var_.compartment_id())
                .displayName(var_.stream_distribution_channel_display_name())
                .id(var_.stream_distribution_channel_id())
                .state(var_.stream_distribution_channel_state())
                .build());
    
        }
    }
    
    variables:
      testStreamDistributionChannels:
        fn::invoke:
          Function: oci:MediaServices:getStreamDistributionChannels
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.stream_distribution_channel_display_name}
            id: ${var.stream_distribution_channel_id}
            state: ${var.stream_distribution_channel_state}
    

    Using getStreamDistributionChannels

    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 getStreamDistributionChannels(args: GetStreamDistributionChannelsArgs, opts?: InvokeOptions): Promise<GetStreamDistributionChannelsResult>
    function getStreamDistributionChannelsOutput(args: GetStreamDistributionChannelsOutputArgs, opts?: InvokeOptions): Output<GetStreamDistributionChannelsResult>
    def get_stream_distribution_channels(compartment_id: Optional[str] = None,
                                         display_name: Optional[str] = None,
                                         filters: Optional[Sequence[_mediaservices.GetStreamDistributionChannelsFilter]] = None,
                                         id: Optional[str] = None,
                                         state: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetStreamDistributionChannelsResult
    def get_stream_distribution_channels_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                         display_name: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_mediaservices.GetStreamDistributionChannelsFilterArgs]]]] = None,
                                         id: Optional[pulumi.Input[str]] = None,
                                         state: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetStreamDistributionChannelsResult]
    func GetStreamDistributionChannels(ctx *Context, args *GetStreamDistributionChannelsArgs, opts ...InvokeOption) (*GetStreamDistributionChannelsResult, error)
    func GetStreamDistributionChannelsOutput(ctx *Context, args *GetStreamDistributionChannelsOutputArgs, opts ...InvokeOption) GetStreamDistributionChannelsResultOutput

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

    public static class GetStreamDistributionChannels 
    {
        public static Task<GetStreamDistributionChannelsResult> InvokeAsync(GetStreamDistributionChannelsArgs args, InvokeOptions? opts = null)
        public static Output<GetStreamDistributionChannelsResult> Invoke(GetStreamDistributionChannelsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetStreamDistributionChannelsResult> getStreamDistributionChannels(GetStreamDistributionChannelsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:MediaServices/getStreamDistributionChannels:getStreamDistributionChannels
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only the resources that match the entire display name given.
    Filters List<GetStreamDistributionChannelsFilter>
    Id string
    Unique Stream Distribution Channel identifier.
    State string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only the resources that match the entire display name given.
    Filters []GetStreamDistributionChannelsFilter
    Id string
    Unique Stream Distribution Channel identifier.
    State string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only the resources that match the entire display name given.
    filters List<GetStreamDistributionChannelsFilter>
    id String
    Unique Stream Distribution Channel identifier.
    state String
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only the resources that match the entire display name given.
    filters GetStreamDistributionChannelsFilter[]
    id string
    Unique Stream Distribution Channel identifier.
    state string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only the resources that match the entire display name given.
    filters GetStreamDistributionChannelsFilter]
    id str
    Unique Stream Distribution Channel identifier.
    state str
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only the resources that match the entire display name given.
    filters List<Property Map>
    id String
    Unique Stream Distribution Channel identifier.
    state String
    A filter to return only the resources with lifecycleState matching the given lifecycleState.

    getStreamDistributionChannels Result

    The following output properties are available:

    StreamDistributionChannelCollections List<GetStreamDistributionChannelsStreamDistributionChannelCollection>
    The list of stream_distribution_channel_collection.
    CompartmentId string
    The compartment ID of the lock.
    DisplayName string
    Stream Distribution Channel display name. Avoid entering confidential information.
    Filters List<GetStreamDistributionChannelsFilter>
    Id string
    Unique identifier that is immutable on creation.
    State string
    The current state of the Stream Distribution Channel.
    StreamDistributionChannelCollections []GetStreamDistributionChannelsStreamDistributionChannelCollection
    The list of stream_distribution_channel_collection.
    CompartmentId string
    The compartment ID of the lock.
    DisplayName string
    Stream Distribution Channel display name. Avoid entering confidential information.
    Filters []GetStreamDistributionChannelsFilter
    Id string
    Unique identifier that is immutable on creation.
    State string
    The current state of the Stream Distribution Channel.
    streamDistributionChannelCollections List<GetStreamDistributionChannelsStreamDistributionChannelCollection>
    The list of stream_distribution_channel_collection.
    compartmentId String
    The compartment ID of the lock.
    displayName String
    Stream Distribution Channel display name. Avoid entering confidential information.
    filters List<GetStreamDistributionChannelsFilter>
    id String
    Unique identifier that is immutable on creation.
    state String
    The current state of the Stream Distribution Channel.
    streamDistributionChannelCollections GetStreamDistributionChannelsStreamDistributionChannelCollection[]
    The list of stream_distribution_channel_collection.
    compartmentId string
    The compartment ID of the lock.
    displayName string
    Stream Distribution Channel display name. Avoid entering confidential information.
    filters GetStreamDistributionChannelsFilter[]
    id string
    Unique identifier that is immutable on creation.
    state string
    The current state of the Stream Distribution Channel.
    stream_distribution_channel_collections GetStreamDistributionChannelsStreamDistributionChannelCollection]
    The list of stream_distribution_channel_collection.
    compartment_id str
    The compartment ID of the lock.
    display_name str
    Stream Distribution Channel display name. Avoid entering confidential information.
    filters GetStreamDistributionChannelsFilter]
    id str
    Unique identifier that is immutable on creation.
    state str
    The current state of the Stream Distribution Channel.
    streamDistributionChannelCollections List<Property Map>
    The list of stream_distribution_channel_collection.
    compartmentId String
    The compartment ID of the lock.
    displayName String
    Stream Distribution Channel display name. Avoid entering confidential information.
    filters List<Property Map>
    id String
    Unique identifier that is immutable on creation.
    state String
    The current state of the Stream Distribution Channel.

    Supporting Types

    GetStreamDistributionChannelsFilter

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

    GetStreamDistributionChannelsStreamDistributionChannelCollection

    GetStreamDistributionChannelsStreamDistributionChannelCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only the resources that match the entire display name given.
    DomainName string
    Unique domain name of the Distribution Channel.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique Stream Distribution Channel identifier.
    IsLockOverride bool
    Locks List<GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock>
    Locks associated with this resource.
    State string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    SystemTags Dictionary<string, object>
    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
    The ID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only the resources that match the entire display name given.
    DomainName string
    Unique domain name of the Distribution Channel.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique Stream Distribution Channel identifier.
    IsLockOverride bool
    Locks []GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock
    Locks associated with this resource.
    State string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    SystemTags map[string]interface{}
    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
    The ID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only the resources that match the entire display name given.
    domainName String
    Unique domain name of the Distribution Channel.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique Stream Distribution Channel identifier.
    isLockOverride Boolean
    locks List<GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock>
    Locks associated with this resource.
    state String
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    systemTags Map<String,Object>
    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
    The ID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    A filter to return only the resources that match the entire display name given.
    domainName string
    Unique domain name of the Distribution Channel.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique Stream Distribution Channel identifier.
    isLockOverride boolean
    locks GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock[]
    Locks associated with this resource.
    state string
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    systemTags {[key: string]: any}
    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
    The ID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name str
    A filter to return only the resources that match the entire display name given.
    domain_name str
    Unique domain name of the Distribution Channel.
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique Stream Distribution Channel identifier.
    is_lock_override bool
    locks GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock]
    Locks associated with this resource.
    state str
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    system_tags Mapping[str, Any]
    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
    The ID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only the resources that match the entire display name given.
    domainName String
    Unique domain name of the Distribution Channel.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique Stream Distribution Channel identifier.
    isLockOverride Boolean
    locks List<Property Map>
    Locks associated with this resource.
    state String
    A filter to return only the resources with lifecycleState matching the given lifecycleState.
    systemTags Map<Any>
    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.

    GetStreamDistributionChannelsStreamDistributionChannelCollectionItemLock

    CompartmentId string
    The ID of the compartment in which to list resources.
    Message 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 string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    Type string
    Type of the lock.
    CompartmentId string
    The ID of the compartment in which to list resources.
    Message 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 string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    Type string
    Type of the lock.
    compartmentId String
    The ID of the compartment in which to list resources.
    message 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 String
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    type String
    Type of the lock.
    compartmentId string
    The ID of the compartment in which to list resources.
    message 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 string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated string
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    type string
    Type of the lock.
    compartment_id str
    The ID of the compartment in which to list resources.
    message 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 str
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created str
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    type str
    Type of the lock.
    compartmentId String
    The ID of the compartment in which to list resources.
    message 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 String
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.
    type String
    Type of the lock.

    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 v1.27.0 published on Friday, Mar 15, 2024 by Pulumi