oci.MediaServices.StreamCdnConfig
Explore with Pulumi AI
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={
        "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=[{
        "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/v2/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.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("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[StreamCdnConfigConfigArgs] = None,
                    display_name: Optional[str] = None,
                    distribution_channel_id: Optional[str] = None,
                    defined_tags: Optional[Mapping[str, str]] = None,
                    freeform_tags: Optional[Mapping[str, str]] = None,
                    is_enabled: Optional[bool] = None,
                    is_lock_override: Optional[bool] = None,
                    locks: Optional[Sequence[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.
Constructor 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", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    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.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	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", "string"))
    .freeformTags(Map.of("string", "string"))
    .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={
        "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": "string",
    },
    freeform_tags={
        "string": "string",
    },
    is_enabled=False,
    is_lock_override=False,
    locks=[{
        "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: "string",
    },
    freeformTags: {
        string: "string",
    },
    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: string
    displayName: string
    distributionChannelId: string
    freeformTags:
        string: string
    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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The StreamCdnConfig resource accepts the following input properties:
- Config
StreamCdn Config Config 
- (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.
- DistributionChannel stringId 
- Distribution Channel Identifier.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- IsEnabled bool
- (Updatable) Whether publishing to CDN is enabled.
- IsLock boolOverride 
- Locks
List<StreamCdn Config Lock> 
- Locks associated with this resource.
- Config
StreamCdn Config Config Args 
- (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.
- DistributionChannel stringId 
- Distribution Channel Identifier.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- IsEnabled bool
- (Updatable) Whether publishing to CDN is enabled.
- IsLock boolOverride 
- Locks
[]StreamCdn Config Lock Args 
- Locks associated with this resource.
- config
StreamCdn Config Config 
- (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.
- distributionChannel StringId 
- Distribution Channel Identifier.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- isEnabled Boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock BooleanOverride 
- locks
List<StreamCdn Config Lock> 
- Locks associated with this resource.
- config
StreamCdn Config Config 
- (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.
- distributionChannel stringId 
- Distribution Channel Identifier.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[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"}
- isEnabled boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock booleanOverride 
- locks
StreamCdn Config Lock[] 
- Locks associated with this resource.
- config
StreamCdn Config Config Args 
- (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_ strid 
- Distribution Channel Identifier.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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_enabled bool
- (Updatable) Whether publishing to CDN is enabled.
- is_lock_ booloverride 
- locks
Sequence[StreamCdn Config Lock Args] 
- 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.
- distributionChannel StringId 
- Distribution Channel Identifier.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- isEnabled Boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock BooleanOverride 
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- {[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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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[StreamCdnConfigConfigArgs] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        distribution_channel_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_enabled: Optional[bool] = None,
        is_lock_override: Optional[bool] = None,
        lifecyle_details: Optional[str] = None,
        locks: Optional[Sequence[StreamCdnConfigLockArgs]] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> StreamCdnConfigfunc 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)resources:  _:    type: oci:MediaServices:StreamCdnConfig    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- The compartment ID of the lock.
- Config
StreamCdn Config Config 
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- 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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- DistributionChannel stringId 
- Distribution Channel Identifier.
- 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"}
- IsEnabled bool
- (Updatable) Whether publishing to CDN is enabled.
- IsLock boolOverride 
- 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<StreamCdn Config Lock> 
- Locks associated with this resource.
- State string
- The current state of the CDN Configuration.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- CompartmentId string
- The compartment ID of the lock.
- Config
StreamCdn Config Config Args 
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- 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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- DistributionChannel stringId 
- Distribution Channel Identifier.
- 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"}
- IsEnabled bool
- (Updatable) Whether publishing to CDN is enabled.
- IsLock boolOverride 
- 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
[]StreamCdn Config Lock Args 
- Locks associated with this resource.
- State string
- The current state of the CDN Configuration.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartmentId String
- The compartment ID of the lock.
- config
StreamCdn Config Config 
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- 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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distributionChannel StringId 
- Distribution Channel Identifier.
- 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"}
- isEnabled Boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock BooleanOverride 
- 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<StreamCdn Config Lock> 
- Locks associated with this resource.
- state String
- The current state of the CDN Configuration.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartmentId string
- The compartment ID of the lock.
- config
StreamCdn Config Config 
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- {[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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distributionChannel stringId 
- Distribution Channel Identifier.
- {[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"}
- isEnabled boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock booleanOverride 
- 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
StreamCdn Config Lock[] 
- Locks associated with this resource.
- state string
- The current state of the CDN Configuration.
- {[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 CDN Config was created. An RFC3339 formatted datetime string.
- 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
StreamCdn Config Config Args 
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- 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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution_channel_ strid 
- Distribution Channel Identifier.
- 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_enabled bool
- (Updatable) Whether publishing to CDN is enabled.
- is_lock_ booloverride 
- 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[StreamCdn Config Lock Args] 
- Locks associated with this resource.
- state str
- The current state of the CDN Configuration.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- 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.
- 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) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distributionChannel StringId 
- Distribution Channel Identifier.
- 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"}
- isEnabled Boolean
- (Updatable) Whether publishing to CDN is enabled.
- isLock BooleanOverride 
- 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.
- 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 CDN Config was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time when the CDN Config was updated. An RFC3339 formatted datetime string.
Supporting Types
StreamCdnConfigConfig, StreamCdnConfigConfigArgs        
- Type string
- (Updatable) The name of the CDN configuration type.
- EdgeHostname string
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- EdgePath stringPrefix 
- (Updatable) The path to prepend when building CDN URLs.
- EdgeToken stringKey 
- (Updatable) The encryption key to use for edge token authentication.
- EdgeToken stringSalt 
- (Updatable) Salt to use when encrypting authentication token.
- IsEdge boolToken Auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- OriginAuth stringSecret Key A 
- (Updatable) The shared secret key A, two for errorless key rotation.
- OriginAuth stringSecret Key B 
- (Updatable) The shared secret key B, two for errorless key rotation.
- OriginAuth stringSecret Key Nonce A 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- OriginAuth stringSecret Key Nonce B 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- OriginAuth stringSign Encryption 
- (Updatable) The type of encryption used to compute the signature.
- OriginAuth stringSign Type 
- (Updatable) The type of data used to compute the signature.
- Type string
- (Updatable) The name of the CDN configuration type.
- EdgeHostname string
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- EdgePath stringPrefix 
- (Updatable) The path to prepend when building CDN URLs.
- EdgeToken stringKey 
- (Updatable) The encryption key to use for edge token authentication.
- EdgeToken stringSalt 
- (Updatable) Salt to use when encrypting authentication token.
- IsEdge boolToken Auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- OriginAuth stringSecret Key A 
- (Updatable) The shared secret key A, two for errorless key rotation.
- OriginAuth stringSecret Key B 
- (Updatable) The shared secret key B, two for errorless key rotation.
- OriginAuth stringSecret Key Nonce A 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- OriginAuth stringSecret Key Nonce B 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- OriginAuth stringSign Encryption 
- (Updatable) The type of encryption used to compute the signature.
- OriginAuth stringSign Type 
- (Updatable) The type of data used to compute the signature.
- type String
- (Updatable) The name of the CDN configuration type.
- edgeHostname String
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edgePath StringPrefix 
- (Updatable) The path to prepend when building CDN URLs.
- edgeToken StringKey 
- (Updatable) The encryption key to use for edge token authentication.
- edgeToken StringSalt 
- (Updatable) Salt to use when encrypting authentication token.
- isEdge BooleanToken Auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- originAuth StringSecret Key A 
- (Updatable) The shared secret key A, two for errorless key rotation.
- originAuth StringSecret Key B 
- (Updatable) The shared secret key B, two for errorless key rotation.
- originAuth StringSecret Key Nonce A 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- originAuth StringSecret Key Nonce B 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- originAuth StringSign Encryption 
- (Updatable) The type of encryption used to compute the signature.
- originAuth StringSign Type 
- (Updatable) The type of data used to compute the signature.
- type string
- (Updatable) The name of the CDN configuration type.
- edgeHostname string
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edgePath stringPrefix 
- (Updatable) The path to prepend when building CDN URLs.
- edgeToken stringKey 
- (Updatable) The encryption key to use for edge token authentication.
- edgeToken stringSalt 
- (Updatable) Salt to use when encrypting authentication token.
- isEdge booleanToken Auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- originAuth stringSecret Key A 
- (Updatable) The shared secret key A, two for errorless key rotation.
- originAuth stringSecret Key B 
- (Updatable) The shared secret key B, two for errorless key rotation.
- originAuth stringSecret Key Nonce A 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- originAuth stringSecret Key Nonce B 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- originAuth stringSign Encryption 
- (Updatable) The type of encryption used to compute the signature.
- originAuth stringSign Type 
- (Updatable) The type of data used to compute the signature.
- type str
- (Updatable) The name of the CDN configuration type.
- edge_hostname str
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edge_path_ strprefix 
- (Updatable) The path to prepend when building CDN URLs.
- edge_token_ strkey 
- (Updatable) The encryption key to use for edge token authentication.
- edge_token_ strsalt 
- (Updatable) Salt to use when encrypting authentication token.
- is_edge_ booltoken_ auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- origin_auth_ strsecret_ key_ a 
- (Updatable) The shared secret key A, two for errorless key rotation.
- origin_auth_ strsecret_ key_ b 
- (Updatable) The shared secret key B, two for errorless key rotation.
- origin_auth_ strsecret_ key_ nonce_ a 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- origin_auth_ strsecret_ key_ nonce_ b 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- origin_auth_ strsign_ encryption 
- (Updatable) The type of encryption used to compute the signature.
- origin_auth_ strsign_ type 
- (Updatable) The type of data used to compute the signature.
- type String
- (Updatable) The name of the CDN configuration type.
- edgeHostname String
- (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edgePath StringPrefix 
- (Updatable) The path to prepend when building CDN URLs.
- edgeToken StringKey 
- (Updatable) The encryption key to use for edge token authentication.
- edgeToken StringSalt 
- (Updatable) Salt to use when encrypting authentication token.
- isEdge BooleanToken Auth 
- (Updatable) Whether token authentication should be used at the CDN edge.
- originAuth StringSecret Key A 
- (Updatable) The shared secret key A, two for errorless key rotation.
- originAuth StringSecret Key B 
- (Updatable) The shared secret key B, two for errorless key rotation.
- originAuth StringSecret Key Nonce A 
- (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- originAuth StringSecret Key Nonce B 
- (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- originAuth StringSign Encryption 
- (Updatable) The type of encryption used to compute the signature.
- originAuth StringSign Type 
- (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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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 ociTerraform Provider.