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[_mediaservices.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[_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.
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=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": "string",
},
freeform_tags={
"string": "string",
},
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: "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
The StreamCdnConfig resource accepts the following input properties:
- Config
Stream
Cdn Config Config - (Updatable) Base fields of the StreamCdnConfig configuration object.
- Display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Distribution
Channel 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"}
- Is
Enabled bool - (Updatable) Whether publishing to CDN is enabled.
- Is
Lock boolOverride - Locks
List<Stream
Cdn Config Lock> - Locks associated with this resource.
- Config
Stream
Cdn Config Config Args - (Updatable) Base fields of the StreamCdnConfig configuration object.
- Display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Distribution
Channel 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"}
- Is
Enabled bool - (Updatable) Whether publishing to CDN is enabled.
- Is
Lock boolOverride - Locks
[]Stream
Cdn Config Lock Args - Locks associated with this resource.
- config
Stream
Cdn Config Config - (Updatable) Base fields of the StreamCdnConfig configuration object.
- display
Name String - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled Boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock BooleanOverride - locks
List<Stream
Cdn Config Lock> - Locks associated with this resource.
- config
Stream
Cdn Config Config - (Updatable) Base fields of the StreamCdnConfig configuration object.
- display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock booleanOverride - locks
Stream
Cdn Config Lock[] - Locks associated with this resource.
- config
mediaservices.
Stream Cdn 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[mediaservices.
Stream Cdn Config Lock Args] - Locks associated with this resource.
- config Property Map
- (Updatable) Base fields of the StreamCdnConfig configuration object.
- display
Name String - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled Boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock 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:
- Compartment
Id string - The compartment ID of the lock.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecyle
Details 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"}
- Time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- Compartment
Id string - The compartment ID of the lock.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecyle
Details 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"}
- Time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartment
Id String - The compartment ID of the lock.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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"}
- time
Created String - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated String - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartment
Id string - The compartment ID of the lock.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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"}
- time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- compartment
Id String - The compartment ID of the lock.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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"}
- time
Created String - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated 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, 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[_mediaservices.StreamCdnConfigLockArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = 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.
- Compartment
Id string - The compartment ID of the lock.
- Config
Stream
Cdn 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"}
- Display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Distribution
Channel 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"}
- Is
Enabled bool - (Updatable) Whether publishing to CDN is enabled.
- Is
Lock boolOverride - Lifecyle
Details 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<Stream
Cdn 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"}
- Time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- Compartment
Id string - The compartment ID of the lock.
- Config
Stream
Cdn 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"}
- Display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Distribution
Channel 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"}
- Is
Enabled bool - (Updatable) Whether publishing to CDN is enabled.
- Is
Lock boolOverride - Lifecyle
Details 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
[]Stream
Cdn 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"}
- Time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartment
Id String - The compartment ID of the lock.
- config
Stream
Cdn 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"}
- display
Name String - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled Boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock BooleanOverride - lifecyle
Details 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<Stream
Cdn 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"}
- time
Created String - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated String - The time when the CDN Config was updated. An RFC3339 formatted datetime string.
- compartment
Id string - The compartment ID of the lock.
- config
Stream
Cdn 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"}
- display
Name string - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock booleanOverride - lifecyle
Details 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
Stream
Cdn 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"}
- time
Created string - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated 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.
Stream Cdn 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[mediaservices.
Stream Cdn 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.
- compartment
Id 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"}
- display
Name String - (Updatable) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- distribution
Channel 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"}
- is
Enabled Boolean - (Updatable) Whether publishing to CDN is enabled.
- is
Lock BooleanOverride - lifecyle
Details 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"}
- time
Created String - The time when the CDN Config was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- Edge
Hostname string - (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- Edge
Path stringPrefix - (Updatable) The path to prepend when building CDN URLs.
- Edge
Token stringKey - (Updatable) The encryption key to use for edge token authentication.
- Edge
Token stringSalt - (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 stringSecret Key A - (Updatable) The shared secret key A, two for errorless key rotation.
- Origin
Auth stringSecret Key B - (Updatable) The shared secret key B, two for errorless key rotation.
- Origin
Auth stringSecret Key Nonce A - (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- Origin
Auth stringSecret Key Nonce B - (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- Origin
Auth stringSign Encryption - (Updatable) The type of encryption used to compute the signature.
- Origin
Auth stringSign Type - (Updatable) The type of data used to compute the signature.
- Type string
- (Updatable) The name of the CDN configuration type.
- Edge
Hostname string - (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- Edge
Path stringPrefix - (Updatable) The path to prepend when building CDN URLs.
- Edge
Token stringKey - (Updatable) The encryption key to use for edge token authentication.
- Edge
Token stringSalt - (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 stringSecret Key A - (Updatable) The shared secret key A, two for errorless key rotation.
- Origin
Auth stringSecret Key B - (Updatable) The shared secret key B, two for errorless key rotation.
- Origin
Auth stringSecret Key Nonce A - (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- Origin
Auth stringSecret Key Nonce B - (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- Origin
Auth stringSign Encryption - (Updatable) The type of encryption used to compute the signature.
- Origin
Auth stringSign Type - (Updatable) The type of data used to compute the signature.
- type String
- (Updatable) The name of the CDN configuration type.
- edge
Hostname String - (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edge
Path StringPrefix - (Updatable) The path to prepend when building CDN URLs.
- edge
Token StringKey - (Updatable) The encryption key to use for edge token authentication.
- edge
Token StringSalt - (Updatable) Salt to use when encrypting authentication token.
- is
Edge BooleanToken Auth - (Updatable) Whether token authentication should be used at the CDN edge.
- origin
Auth StringSecret Key A - (Updatable) The shared secret key A, two for errorless key rotation.
- origin
Auth StringSecret Key B - (Updatable) The shared secret key B, two for errorless key rotation.
- origin
Auth StringSecret Key Nonce A - (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- origin
Auth StringSecret Key Nonce B - (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- origin
Auth StringSign Encryption - (Updatable) The type of encryption used to compute the signature.
- origin
Auth StringSign Type - (Updatable) The type of data used to compute the signature.
- type string
- (Updatable) The name of the CDN configuration type.
- edge
Hostname string - (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edge
Path stringPrefix - (Updatable) The path to prepend when building CDN URLs.
- edge
Token stringKey - (Updatable) The encryption key to use for edge token authentication.
- edge
Token stringSalt - (Updatable) Salt to use when encrypting authentication token.
- is
Edge booleanToken Auth - (Updatable) Whether token authentication should be used at the CDN edge.
- origin
Auth stringSecret Key A - (Updatable) The shared secret key A, two for errorless key rotation.
- origin
Auth stringSecret Key B - (Updatable) The shared secret key B, two for errorless key rotation.
- origin
Auth stringSecret Key Nonce A - (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- origin
Auth stringSecret Key Nonce B - (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- origin
Auth stringSign Encryption - (Updatable) The type of encryption used to compute the signature.
- origin
Auth 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.
- edge
Hostname String - (Updatable) The hostname of the CDN edge server to use when building CDN URLs.
- edge
Path StringPrefix - (Updatable) The path to prepend when building CDN URLs.
- edge
Token StringKey - (Updatable) The encryption key to use for edge token authentication.
- edge
Token StringSalt - (Updatable) Salt to use when encrypting authentication token.
- is
Edge BooleanToken Auth - (Updatable) Whether token authentication should be used at the CDN edge.
- origin
Auth StringSecret Key A - (Updatable) The shared secret key A, two for errorless key rotation.
- origin
Auth StringSecret Key B - (Updatable) The shared secret key B, two for errorless key rotation.
- origin
Auth StringSecret Key Nonce A - (Updatable) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).
- origin
Auth StringSecret Key Nonce B - (Updatable) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).
- origin
Auth StringSign Encryption - (Updatable) The type of encryption used to compute the signature.
- origin
Auth StringSign Type - (Updatable) The type of data used to compute the signature.
StreamCdnConfigLock, StreamCdnConfigLockArgs
- Compartment
Id 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.
- Time
Created string - When the lock was created.
- Compartment
Id 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.
- Time
Created string - When the lock was created.
- compartment
Id 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.
- time
Created String - When the lock was created.
- compartment
Id 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.
- time
Created 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.
- compartment
Id 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.
- time
Created 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.