1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. MediaServices
  5. StreamCdnConfig
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.MediaServices.StreamCdnConfig

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This resource provides the Stream Cdn Config resource in Oracle Cloud Infrastructure Media Services service.

    Creates a new CDN Configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testStreamCdnConfig = new oci.mediaservices.StreamCdnConfig("test_stream_cdn_config", {
        config: {
            type: streamCdnConfigConfigType,
            edgeHostname: streamCdnConfigConfigEdgeHostname,
            edgePathPrefix: streamCdnConfigConfigEdgePathPrefix,
            edgeTokenKey: streamCdnConfigConfigEdgeTokenKey,
            edgeTokenSalt: streamCdnConfigConfigEdgeTokenSalt,
            isEdgeTokenAuth: streamCdnConfigConfigIsEdgeTokenAuth,
            originAuthSecretKeyA: streamCdnConfigConfigOriginAuthSecretKeyA,
            originAuthSecretKeyB: streamCdnConfigConfigOriginAuthSecretKeyB,
            originAuthSecretKeyNonceA: streamCdnConfigConfigOriginAuthSecretKeyNonceA,
            originAuthSecretKeyNonceB: streamCdnConfigConfigOriginAuthSecretKeyNonceB,
            originAuthSignEncryption: streamCdnConfigConfigOriginAuthSignEncryption,
            originAuthSignType: streamCdnConfigConfigOriginAuthSignType,
        },
        displayName: streamCdnConfigDisplayName,
        distributionChannelId: testChannel.id,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        isEnabled: streamCdnConfigIsEnabled,
        locks: [{
            compartmentId: compartmentId,
            type: streamCdnConfigLocksType,
            message: streamCdnConfigLocksMessage,
            relatedResourceId: testResource.id,
            timeCreated: streamCdnConfigLocksTimeCreated,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_stream_cdn_config = oci.media_services.StreamCdnConfig("test_stream_cdn_config",
        config=oci.media_services.StreamCdnConfigConfigArgs(
            type=stream_cdn_config_config_type,
            edge_hostname=stream_cdn_config_config_edge_hostname,
            edge_path_prefix=stream_cdn_config_config_edge_path_prefix,
            edge_token_key=stream_cdn_config_config_edge_token_key,
            edge_token_salt=stream_cdn_config_config_edge_token_salt,
            is_edge_token_auth=stream_cdn_config_config_is_edge_token_auth,
            origin_auth_secret_key_a=stream_cdn_config_config_origin_auth_secret_key_a,
            origin_auth_secret_key_b=stream_cdn_config_config_origin_auth_secret_key_b,
            origin_auth_secret_key_nonce_a=stream_cdn_config_config_origin_auth_secret_key_nonce_a,
            origin_auth_secret_key_nonce_b=stream_cdn_config_config_origin_auth_secret_key_nonce_b,
            origin_auth_sign_encryption=stream_cdn_config_config_origin_auth_sign_encryption,
            origin_auth_sign_type=stream_cdn_config_config_origin_auth_sign_type,
        ),
        display_name=stream_cdn_config_display_name,
        distribution_channel_id=test_channel["id"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        is_enabled=stream_cdn_config_is_enabled,
        locks=[oci.media_services.StreamCdnConfigLockArgs(
            compartment_id=compartment_id,
            type=stream_cdn_config_locks_type,
            message=stream_cdn_config_locks_message,
            related_resource_id=test_resource["id"],
            time_created=stream_cdn_config_locks_time_created,
        )])
    
    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.NewStreamCdnConfig(ctx, "test_stream_cdn_config", &MediaServices.StreamCdnConfigArgs{
    			Config: &mediaservices.StreamCdnConfigConfigArgs{
    				Type:                      pulumi.Any(streamCdnConfigConfigType),
    				EdgeHostname:              pulumi.Any(streamCdnConfigConfigEdgeHostname),
    				EdgePathPrefix:            pulumi.Any(streamCdnConfigConfigEdgePathPrefix),
    				EdgeTokenKey:              pulumi.Any(streamCdnConfigConfigEdgeTokenKey),
    				EdgeTokenSalt:             pulumi.Any(streamCdnConfigConfigEdgeTokenSalt),
    				IsEdgeTokenAuth:           pulumi.Any(streamCdnConfigConfigIsEdgeTokenAuth),
    				OriginAuthSecretKeyA:      pulumi.Any(streamCdnConfigConfigOriginAuthSecretKeyA),
    				OriginAuthSecretKeyB:      pulumi.Any(streamCdnConfigConfigOriginAuthSecretKeyB),
    				OriginAuthSecretKeyNonceA: pulumi.Any(streamCdnConfigConfigOriginAuthSecretKeyNonceA),
    				OriginAuthSecretKeyNonceB: pulumi.Any(streamCdnConfigConfigOriginAuthSecretKeyNonceB),
    				OriginAuthSignEncryption:  pulumi.Any(streamCdnConfigConfigOriginAuthSignEncryption),
    				OriginAuthSignType:        pulumi.Any(streamCdnConfigConfigOriginAuthSignType),
    			},
    			DisplayName:           pulumi.Any(streamCdnConfigDisplayName),
    			DistributionChannelId: pulumi.Any(testChannel.Id),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			IsEnabled: pulumi.Any(streamCdnConfigIsEnabled),
    			Locks: mediaservices.StreamCdnConfigLockArray{
    				&mediaservices.StreamCdnConfigLockArgs{
    					CompartmentId:     pulumi.Any(compartmentId),
    					Type:              pulumi.Any(streamCdnConfigLocksType),
    					Message:           pulumi.Any(streamCdnConfigLocksMessage),
    					RelatedResourceId: pulumi.Any(testResource.Id),
    					TimeCreated:       pulumi.Any(streamCdnConfigLocksTimeCreated),
    				},
    			},
    		})
    		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 testStreamCdnConfig = new Oci.MediaServices.StreamCdnConfig("test_stream_cdn_config", new()
        {
            Config = new Oci.MediaServices.Inputs.StreamCdnConfigConfigArgs
            {
                Type = streamCdnConfigConfigType,
                EdgeHostname = streamCdnConfigConfigEdgeHostname,
                EdgePathPrefix = streamCdnConfigConfigEdgePathPrefix,
                EdgeTokenKey = streamCdnConfigConfigEdgeTokenKey,
                EdgeTokenSalt = streamCdnConfigConfigEdgeTokenSalt,
                IsEdgeTokenAuth = streamCdnConfigConfigIsEdgeTokenAuth,
                OriginAuthSecretKeyA = streamCdnConfigConfigOriginAuthSecretKeyA,
                OriginAuthSecretKeyB = streamCdnConfigConfigOriginAuthSecretKeyB,
                OriginAuthSecretKeyNonceA = streamCdnConfigConfigOriginAuthSecretKeyNonceA,
                OriginAuthSecretKeyNonceB = streamCdnConfigConfigOriginAuthSecretKeyNonceB,
                OriginAuthSignEncryption = streamCdnConfigConfigOriginAuthSignEncryption,
                OriginAuthSignType = streamCdnConfigConfigOriginAuthSignType,
            },
            DisplayName = streamCdnConfigDisplayName,
            DistributionChannelId = testChannel.Id,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            IsEnabled = streamCdnConfigIsEnabled,
            Locks = new[]
            {
                new Oci.MediaServices.Inputs.StreamCdnConfigLockArgs
                {
                    CompartmentId = compartmentId,
                    Type = streamCdnConfigLocksType,
                    Message = streamCdnConfigLocksMessage,
                    RelatedResourceId = testResource.Id,
                    TimeCreated = streamCdnConfigLocksTimeCreated,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.MediaServices.StreamCdnConfig;
    import com.pulumi.oci.MediaServices.StreamCdnConfigArgs;
    import com.pulumi.oci.MediaServices.inputs.StreamCdnConfigConfigArgs;
    import com.pulumi.oci.MediaServices.inputs.StreamCdnConfigLockArgs;
    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 testStreamCdnConfig = new StreamCdnConfig("testStreamCdnConfig", StreamCdnConfigArgs.builder()        
                .config(StreamCdnConfigConfigArgs.builder()
                    .type(streamCdnConfigConfigType)
                    .edgeHostname(streamCdnConfigConfigEdgeHostname)
                    .edgePathPrefix(streamCdnConfigConfigEdgePathPrefix)
                    .edgeTokenKey(streamCdnConfigConfigEdgeTokenKey)
                    .edgeTokenSalt(streamCdnConfigConfigEdgeTokenSalt)
                    .isEdgeTokenAuth(streamCdnConfigConfigIsEdgeTokenAuth)
                    .originAuthSecretKeyA(streamCdnConfigConfigOriginAuthSecretKeyA)
                    .originAuthSecretKeyB(streamCdnConfigConfigOriginAuthSecretKeyB)
                    .originAuthSecretKeyNonceA(streamCdnConfigConfigOriginAuthSecretKeyNonceA)
                    .originAuthSecretKeyNonceB(streamCdnConfigConfigOriginAuthSecretKeyNonceB)
                    .originAuthSignEncryption(streamCdnConfigConfigOriginAuthSignEncryption)
                    .originAuthSignType(streamCdnConfigConfigOriginAuthSignType)
                    .build())
                .displayName(streamCdnConfigDisplayName)
                .distributionChannelId(testChannel.id())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .isEnabled(streamCdnConfigIsEnabled)
                .locks(StreamCdnConfigLockArgs.builder()
                    .compartmentId(compartmentId)
                    .type(streamCdnConfigLocksType)
                    .message(streamCdnConfigLocksMessage)
                    .relatedResourceId(testResource.id())
                    .timeCreated(streamCdnConfigLocksTimeCreated)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testStreamCdnConfig:
        type: oci:MediaServices:StreamCdnConfig
        name: test_stream_cdn_config
        properties:
          config:
            type: ${streamCdnConfigConfigType}
            edgeHostname: ${streamCdnConfigConfigEdgeHostname}
            edgePathPrefix: ${streamCdnConfigConfigEdgePathPrefix}
            edgeTokenKey: ${streamCdnConfigConfigEdgeTokenKey}
            edgeTokenSalt: ${streamCdnConfigConfigEdgeTokenSalt}
            isEdgeTokenAuth: ${streamCdnConfigConfigIsEdgeTokenAuth}
            originAuthSecretKeyA: ${streamCdnConfigConfigOriginAuthSecretKeyA}
            originAuthSecretKeyB: ${streamCdnConfigConfigOriginAuthSecretKeyB}
            originAuthSecretKeyNonceA: ${streamCdnConfigConfigOriginAuthSecretKeyNonceA}
            originAuthSecretKeyNonceB: ${streamCdnConfigConfigOriginAuthSecretKeyNonceB}
            originAuthSignEncryption: ${streamCdnConfigConfigOriginAuthSignEncryption}
            originAuthSignType: ${streamCdnConfigConfigOriginAuthSignType}
          displayName: ${streamCdnConfigDisplayName}
          distributionChannelId: ${testChannel.id}
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          isEnabled: ${streamCdnConfigIsEnabled}
          locks:
            - compartmentId: ${compartmentId}
              type: ${streamCdnConfigLocksType}
              message: ${streamCdnConfigLocksMessage}
              relatedResourceId: ${testResource.id}
              timeCreated: ${streamCdnConfigLocksTimeCreated}
    

    Create StreamCdnConfig Resource

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

    Constructor syntax

    new StreamCdnConfig(name: string, args: StreamCdnConfigArgs, opts?: CustomResourceOptions);
    @overload
    def StreamCdnConfig(resource_name: str,
                        args: StreamCdnConfigArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def StreamCdnConfig(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        config: Optional[_mediaservices.StreamCdnConfigConfigArgs] = None,
                        display_name: Optional[str] = None,
                        distribution_channel_id: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, Any]] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = None,
                        is_enabled: Optional[bool] = None,
                        is_lock_override: Optional[bool] = None,
                        locks: Optional[Sequence[_mediaservices.StreamCdnConfigLockArgs]] = None)
    func NewStreamCdnConfig(ctx *Context, name string, args StreamCdnConfigArgs, opts ...ResourceOption) (*StreamCdnConfig, error)
    public StreamCdnConfig(string name, StreamCdnConfigArgs args, CustomResourceOptions? opts = null)
    public StreamCdnConfig(String name, StreamCdnConfigArgs args)
    public StreamCdnConfig(String name, StreamCdnConfigArgs args, CustomResourceOptions options)
    
    type: oci:MediaServices:StreamCdnConfig
    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 StreamCdnConfigArgs
    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 StreamCdnConfigArgs
    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 StreamCdnConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StreamCdnConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StreamCdnConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var streamCdnConfigResource = new Oci.MediaServices.StreamCdnConfig("streamCdnConfigResource", new()
    {
        Config = new Oci.MediaServices.Inputs.StreamCdnConfigConfigArgs
        {
            Type = "string",
            EdgeHostname = "string",
            EdgePathPrefix = "string",
            EdgeTokenKey = "string",
            EdgeTokenSalt = "string",
            IsEdgeTokenAuth = false,
            OriginAuthSecretKeyA = "string",
            OriginAuthSecretKeyB = "string",
            OriginAuthSecretKeyNonceA = "string",
            OriginAuthSecretKeyNonceB = "string",
            OriginAuthSignEncryption = "string",
            OriginAuthSignType = "string",
        },
        DisplayName = "string",
        DistributionChannelId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        IsEnabled = false,
        IsLockOverride = false,
        Locks = new[]
        {
            new Oci.MediaServices.Inputs.StreamCdnConfigLockArgs
            {
                CompartmentId = "string",
                Type = "string",
                Message = "string",
                RelatedResourceId = "string",
                TimeCreated = "string",
            },
        },
    });
    
    example, err := MediaServices.NewStreamCdnConfig(ctx, "streamCdnConfigResource", &MediaServices.StreamCdnConfigArgs{
    	Config: &mediaservices.StreamCdnConfigConfigArgs{
    		Type:                      pulumi.String("string"),
    		EdgeHostname:              pulumi.String("string"),
    		EdgePathPrefix:            pulumi.String("string"),
    		EdgeTokenKey:              pulumi.String("string"),
    		EdgeTokenSalt:             pulumi.String("string"),
    		IsEdgeTokenAuth:           pulumi.Bool(false),
    		OriginAuthSecretKeyA:      pulumi.String("string"),
    		OriginAuthSecretKeyB:      pulumi.String("string"),
    		OriginAuthSecretKeyNonceA: pulumi.String("string"),
    		OriginAuthSecretKeyNonceB: pulumi.String("string"),
    		OriginAuthSignEncryption:  pulumi.String("string"),
    		OriginAuthSignType:        pulumi.String("string"),
    	},
    	DisplayName:           pulumi.String("string"),
    	DistributionChannelId: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	IsEnabled:      pulumi.Bool(false),
    	IsLockOverride: pulumi.Bool(false),
    	Locks: mediaservices.StreamCdnConfigLockArray{
    		&mediaservices.StreamCdnConfigLockArgs{
    			CompartmentId:     pulumi.String("string"),
    			Type:              pulumi.String("string"),
    			Message:           pulumi.String("string"),
    			RelatedResourceId: pulumi.String("string"),
    			TimeCreated:       pulumi.String("string"),
    		},
    	},
    })
    
    var streamCdnConfigResource = new StreamCdnConfig("streamCdnConfigResource", StreamCdnConfigArgs.builder()        
        .config(StreamCdnConfigConfigArgs.builder()
            .type("string")
            .edgeHostname("string")
            .edgePathPrefix("string")
            .edgeTokenKey("string")
            .edgeTokenSalt("string")
            .isEdgeTokenAuth(false)
            .originAuthSecretKeyA("string")
            .originAuthSecretKeyB("string")
            .originAuthSecretKeyNonceA("string")
            .originAuthSecretKeyNonceB("string")
            .originAuthSignEncryption("string")
            .originAuthSignType("string")
            .build())
        .displayName("string")
        .distributionChannelId("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .isEnabled(false)
        .isLockOverride(false)
        .locks(StreamCdnConfigLockArgs.builder()
            .compartmentId("string")
            .type("string")
            .message("string")
            .relatedResourceId("string")
            .timeCreated("string")
            .build())
        .build());
    
    stream_cdn_config_resource = oci.media_services.StreamCdnConfig("streamCdnConfigResource",
        config=oci.media_services.StreamCdnConfigConfigArgs(
            type="string",
            edge_hostname="string",
            edge_path_prefix="string",
            edge_token_key="string",
            edge_token_salt="string",
            is_edge_token_auth=False,
            origin_auth_secret_key_a="string",
            origin_auth_secret_key_b="string",
            origin_auth_secret_key_nonce_a="string",
            origin_auth_secret_key_nonce_b="string",
            origin_auth_sign_encryption="string",
            origin_auth_sign_type="string",
        ),
        display_name="string",
        distribution_channel_id="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        },
        is_enabled=False,
        is_lock_override=False,
        locks=[oci.media_services.StreamCdnConfigLockArgs(
            compartment_id="string",
            type="string",
            message="string",
            related_resource_id="string",
            time_created="string",
        )])
    
    const streamCdnConfigResource = new oci.mediaservices.StreamCdnConfig("streamCdnConfigResource", {
        config: {
            type: "string",
            edgeHostname: "string",
            edgePathPrefix: "string",
            edgeTokenKey: "string",
            edgeTokenSalt: "string",
            isEdgeTokenAuth: false,
            originAuthSecretKeyA: "string",
            originAuthSecretKeyB: "string",
            originAuthSecretKeyNonceA: "string",
            originAuthSecretKeyNonceB: "string",
            originAuthSignEncryption: "string",
            originAuthSignType: "string",
        },
        displayName: "string",
        distributionChannelId: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
        isEnabled: false,
        isLockOverride: false,
        locks: [{
            compartmentId: "string",
            type: "string",
            message: "string",
            relatedResourceId: "string",
            timeCreated: "string",
        }],
    });
    
    type: oci:MediaServices:StreamCdnConfig
    properties:
        config:
            edgeHostname: string
            edgePathPrefix: string
            edgeTokenKey: string
            edgeTokenSalt: string
            isEdgeTokenAuth: false
            originAuthSecretKeyA: string
            originAuthSecretKeyB: string
            originAuthSecretKeyNonceA: string
            originAuthSecretKeyNonceB: string
            originAuthSignEncryption: string
            originAuthSignType: string
            type: string
        definedTags:
            string: any
        displayName: string
        distributionChannelId: string
        freeformTags:
            string: any
        isEnabled: false
        isLockOverride: false
        locks:
            - compartmentId: string
              message: string
              relatedResourceId: string
              timeCreated: string
              type: string
    

    StreamCdnConfig Resource Properties

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

    Inputs

    The StreamCdnConfig resource accepts the following input properties:

    Config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    DisplayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    DistributionChannelId string
    Distribution Channel Identifier.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Whether publishing to CDN is enabled.
    IsLockOverride bool
    Locks List<StreamCdnConfigLock>
    Locks associated with this resource.
    Config StreamCdnConfigConfigArgs
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    DisplayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    DistributionChannelId string
    Distribution Channel Identifier.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Whether publishing to CDN is enabled.
    IsLockOverride bool
    Locks []StreamCdnConfigLockArgs
    Locks associated with this resource.
    config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    displayName String
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId String
    Distribution Channel Identifier.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride Boolean
    locks List<StreamCdnConfigLock>
    Locks associated with this resource.
    config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    displayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId string
    Distribution Channel Identifier.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride boolean
    locks StreamCdnConfigLock[]
    Locks associated with this resource.
    config mediaservices.StreamCdnConfigConfigArgs
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    display_name str
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distribution_channel_id str
    Distribution Channel Identifier.
    defined_tags Mapping[str, Any]
    (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, Any]
    (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_enabled bool
    (Updatable) Whether publishing to CDN is enabled.
    is_lock_override bool
    locks Sequence[mediaservices.StreamCdnConfigLockArgs]
    Locks associated with this resource.
    config Property Map
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    displayName String
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId String
    Distribution Channel Identifier.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride Boolean
    locks List<Property Map>
    Locks associated with this resource.

    Outputs

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

    CompartmentId string
    The compartment ID of the lock.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    TimeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    CompartmentId string
    The compartment ID of the lock.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    TimeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The compartment ID of the lock.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the CDN Configuration.
    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
    When the lock was created.
    timeUpdated String
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId string
    The compartment ID of the lock.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    timeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartment_id str
    The compartment ID of the lock.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state str
    The current state of the CDN Configuration.
    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
    When the lock was created.
    time_updated str
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The compartment ID of the lock.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the CDN Configuration.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.

    Look up Existing StreamCdnConfig Resource

    Get an existing StreamCdnConfig 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?: StreamCdnConfigState, opts?: CustomResourceOptions): StreamCdnConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            config: Optional[_mediaservices.StreamCdnConfigConfigArgs] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            distribution_channel_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            is_enabled: Optional[bool] = None,
            is_lock_override: Optional[bool] = None,
            lifecyle_details: Optional[str] = None,
            locks: Optional[Sequence[_mediaservices.StreamCdnConfigLockArgs]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> StreamCdnConfig
    func GetStreamCdnConfig(ctx *Context, name string, id IDInput, state *StreamCdnConfigState, opts ...ResourceOption) (*StreamCdnConfig, error)
    public static StreamCdnConfig Get(string name, Input<string> id, StreamCdnConfigState? state, CustomResourceOptions? opts = null)
    public static StreamCdnConfig get(String name, Output<String> id, StreamCdnConfigState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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
    The compartment ID of the lock.
    Config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    DistributionChannelId string
    Distribution Channel Identifier.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Whether publishing to CDN is enabled.
    IsLockOverride bool
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Locks List<StreamCdnConfigLock>
    Locks associated with this resource.
    State string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    TimeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    CompartmentId string
    The compartment ID of the lock.
    Config StreamCdnConfigConfigArgs
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    DistributionChannelId string
    Distribution Channel Identifier.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsEnabled bool
    (Updatable) Whether publishing to CDN is enabled.
    IsLockOverride bool
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Locks []StreamCdnConfigLockArgs
    Locks associated with this resource.
    State string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    TimeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The compartment ID of the lock.
    config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId String
    Distribution Channel Identifier.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride Boolean
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks List<StreamCdnConfigLock>
    Locks associated with this resource.
    state String
    The current state of the CDN Configuration.
    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
    When the lock was created.
    timeUpdated String
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId string
    The compartment ID of the lock.
    config StreamCdnConfigConfig
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId string
    Distribution Channel Identifier.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride boolean
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks StreamCdnConfigLock[]
    Locks associated with this resource.
    state string
    The current state of the CDN Configuration.
    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
    When the lock was created.
    timeUpdated string
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartment_id str
    The compartment ID of the lock.
    config mediaservices.StreamCdnConfigConfigArgs
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    defined_tags Mapping[str, Any]
    (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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distribution_channel_id str
    Distribution Channel Identifier.
    freeform_tags Mapping[str, Any]
    (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_enabled bool
    (Updatable) Whether publishing to CDN is enabled.
    is_lock_override bool
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks Sequence[mediaservices.StreamCdnConfigLockArgs]
    Locks associated with this resource.
    state str
    The current state of the CDN Configuration.
    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
    When the lock was created.
    time_updated str
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The compartment ID of the lock.
    config Property Map
    (Updatable) Base fields of the StreamCdnConfig configuration object.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    distributionChannelId String
    Distribution Channel Identifier.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isEnabled Boolean
    (Updatable) Whether publishing to CDN is enabled.
    isLockOverride Boolean
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks List<Property Map>
    Locks associated with this resource.
    state String
    The current state of the CDN Configuration.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the CDN Config was updated. An RFC3339 formatted datetime string.

    Supporting Types

    StreamCdnConfigConfig, StreamCdnConfigConfigArgs

    Type 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

    EdgeHostname string
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    EdgePathPrefix string
    (Updatable) The path to prepend when building CDN URLs.
    EdgeTokenKey string
    (Updatable) The encryption key to use for edge token authentication.
    EdgeTokenSalt string
    (Updatable) Salt to use when encrypting authentication token.
    IsEdgeTokenAuth bool
    (Updatable) Whether token authentication should be used at the CDN edge.
    OriginAuthSecretKeyA string
    (Updatable) The shared secret key A, two for errorless key rotation.
    OriginAuthSecretKeyB string
    (Updatable) The shared secret key B, two for errorless key rotation.
    OriginAuthSecretKeyNonceA string
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    OriginAuthSecretKeyNonceB string
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    OriginAuthSignEncryption string
    (Updatable) The type of encryption used to compute the signature.
    OriginAuthSignType string
    (Updatable) The type of data used to compute the signature.
    Type 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

    EdgeHostname string
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    EdgePathPrefix string
    (Updatable) The path to prepend when building CDN URLs.
    EdgeTokenKey string
    (Updatable) The encryption key to use for edge token authentication.
    EdgeTokenSalt string
    (Updatable) Salt to use when encrypting authentication token.
    IsEdgeTokenAuth bool
    (Updatable) Whether token authentication should be used at the CDN edge.
    OriginAuthSecretKeyA string
    (Updatable) The shared secret key A, two for errorless key rotation.
    OriginAuthSecretKeyB string
    (Updatable) The shared secret key B, two for errorless key rotation.
    OriginAuthSecretKeyNonceA string
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    OriginAuthSecretKeyNonceB string
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    OriginAuthSignEncryption string
    (Updatable) The type of encryption used to compute the signature.
    OriginAuthSignType string
    (Updatable) The type of data used to compute the signature.
    type 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

    edgeHostname String
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    edgePathPrefix String
    (Updatable) The path to prepend when building CDN URLs.
    edgeTokenKey String
    (Updatable) The encryption key to use for edge token authentication.
    edgeTokenSalt String
    (Updatable) Salt to use when encrypting authentication token.
    isEdgeTokenAuth Boolean
    (Updatable) Whether token authentication should be used at the CDN edge.
    originAuthSecretKeyA String
    (Updatable) The shared secret key A, two for errorless key rotation.
    originAuthSecretKeyB String
    (Updatable) The shared secret key B, two for errorless key rotation.
    originAuthSecretKeyNonceA String
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    originAuthSecretKeyNonceB String
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    originAuthSignEncryption String
    (Updatable) The type of encryption used to compute the signature.
    originAuthSignType String
    (Updatable) The type of data used to compute the signature.
    type 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

    edgeHostname string
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    edgePathPrefix string
    (Updatable) The path to prepend when building CDN URLs.
    edgeTokenKey string
    (Updatable) The encryption key to use for edge token authentication.
    edgeTokenSalt string
    (Updatable) Salt to use when encrypting authentication token.
    isEdgeTokenAuth boolean
    (Updatable) Whether token authentication should be used at the CDN edge.
    originAuthSecretKeyA string
    (Updatable) The shared secret key A, two for errorless key rotation.
    originAuthSecretKeyB string
    (Updatable) The shared secret key B, two for errorless key rotation.
    originAuthSecretKeyNonceA string
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    originAuthSecretKeyNonceB string
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    originAuthSignEncryption string
    (Updatable) The type of encryption used to compute the signature.
    originAuthSignType string
    (Updatable) The type of data used to compute the signature.
    type 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

    edge_hostname str
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    edge_path_prefix str
    (Updatable) The path to prepend when building CDN URLs.
    edge_token_key str
    (Updatable) The encryption key to use for edge token authentication.
    edge_token_salt str
    (Updatable) Salt to use when encrypting authentication token.
    is_edge_token_auth bool
    (Updatable) Whether token authentication should be used at the CDN edge.
    origin_auth_secret_key_a str
    (Updatable) The shared secret key A, two for errorless key rotation.
    origin_auth_secret_key_b str
    (Updatable) The shared secret key B, two for errorless key rotation.
    origin_auth_secret_key_nonce_a str
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    origin_auth_secret_key_nonce_b str
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    origin_auth_sign_encryption str
    (Updatable) The type of encryption used to compute the signature.
    origin_auth_sign_type str
    (Updatable) The type of data used to compute the signature.
    type 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

    edgeHostname String
    (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
    edgePathPrefix String
    (Updatable) The path to prepend when building CDN URLs.
    edgeTokenKey String
    (Updatable) The encryption key to use for edge token authentication.
    edgeTokenSalt String
    (Updatable) Salt to use when encrypting authentication token.
    isEdgeTokenAuth Boolean
    (Updatable) Whether token authentication should be used at the CDN edge.
    originAuthSecretKeyA String
    (Updatable) The shared secret key A, two for errorless key rotation.
    originAuthSecretKeyB String
    (Updatable) The shared secret key B, two for errorless key rotation.
    originAuthSecretKeyNonceA String
    (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
    originAuthSecretKeyNonceB String
    (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
    originAuthSignEncryption String
    (Updatable) The type of encryption used to compute the signature.
    originAuthSignType String
    (Updatable) The type of data used to compute the signature.

    StreamCdnConfigLock, StreamCdnConfigLockArgs

    CompartmentId string
    The compartment ID of the lock.
    Type 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 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
    When the lock was created.
    CompartmentId string
    The compartment ID of the lock.
    Type 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 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
    When the lock was created.
    compartmentId String
    The compartment ID of the lock.
    type 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 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
    When the lock was created.
    compartmentId string
    The compartment ID of the lock.
    type 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 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
    When the lock was created.
    compartment_id str
    The compartment ID of the lock.
    type 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 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
    When the lock was created.
    compartmentId String
    The compartment ID of the lock.
    type 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 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
    When the lock was created.

    Import

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

    $ pulumi import oci:MediaServices/streamCdnConfig:StreamCdnConfig test_stream_cdn_config "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 v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi