We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Streaming Endpoint.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleServiceAccount = new Azure.Media.ServiceAccount("exampleServiceAccount", new Azure.Media.ServiceAccountArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
StorageAccounts =
{
new Azure.Media.Inputs.ServiceAccountStorageAccountArgs
{
Id = exampleAccount.Id,
IsPrimary = true,
},
},
});
var exampleStreamingEndpoint = new Azure.Media.StreamingEndpoint("exampleStreamingEndpoint", new Azure.Media.StreamingEndpointArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
MediaServicesAccountName = exampleServiceAccount.Name,
ScaleUnits = 2,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/media"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
exampleServiceAccount, err := media.NewServiceAccount(ctx, "exampleServiceAccount", &media.ServiceAccountArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
StorageAccounts: media.ServiceAccountStorageAccountArray{
&media.ServiceAccountStorageAccountArgs{
Id: exampleAccount.ID(),
IsPrimary: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
_, err = media.NewStreamingEndpoint(ctx, "exampleStreamingEndpoint", &media.StreamingEndpointArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
MediaServicesAccountName: exampleServiceAccount.Name,
ScaleUnits: pulumi.Int(2),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleServiceAccount = new azure.media.ServiceAccount("exampleServiceAccount", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
storageAccounts: [{
id: exampleAccount.id,
isPrimary: true,
}],
});
const exampleStreamingEndpoint = new azure.media.StreamingEndpoint("exampleStreamingEndpoint", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
mediaServicesAccountName: exampleServiceAccount.name,
scaleUnits: 2,
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="GRS")
example_service_account = azure.media.ServiceAccount("exampleServiceAccount",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
storage_accounts=[azure.media.ServiceAccountStorageAccountArgs(
id=example_account.id,
is_primary=True,
)])
example_streaming_endpoint = azure.media.StreamingEndpoint("exampleStreamingEndpoint",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
media_services_account_name=example_service_account.name,
scale_units=2)
Example coming soon!
With Access Control
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleServiceAccount = new Azure.Media.ServiceAccount("exampleServiceAccount", new Azure.Media.ServiceAccountArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
StorageAccounts =
{
new Azure.Media.Inputs.ServiceAccountStorageAccountArgs
{
Id = exampleAccount.Id,
IsPrimary = true,
},
},
});
var exampleStreamingEndpoint = new Azure.Media.StreamingEndpoint("exampleStreamingEndpoint", new Azure.Media.StreamingEndpointArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
MediaServicesAccountName = exampleServiceAccount.Name,
ScaleUnits = 2,
AccessControl = new Azure.Media.Inputs.StreamingEndpointAccessControlArgs
{
IpAllows =
{
new Azure.Media.Inputs.StreamingEndpointAccessControlIpAllowArgs
{
Name = "AllowedIP",
Address = "192.168.1.1",
},
new Azure.Media.Inputs.StreamingEndpointAccessControlIpAllowArgs
{
Name = "AnotherIp",
Address = "192.168.1.2",
},
},
AkamaiSignatureHeaderAuthenticationKeys =
{
new Azure.Media.Inputs.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs
{
Identifier = "id1",
Expiration = "2030-12-31T16:00:00Z",
Base64Key = "dGVzdGlkMQ==",
},
new Azure.Media.Inputs.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs
{
Identifier = "id2",
Expiration = "2032-01-28T16:00:00Z",
Base64Key = "dGVzdGlkMQ==",
},
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/media"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
exampleServiceAccount, err := media.NewServiceAccount(ctx, "exampleServiceAccount", &media.ServiceAccountArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
StorageAccounts: media.ServiceAccountStorageAccountArray{
&media.ServiceAccountStorageAccountArgs{
Id: exampleAccount.ID(),
IsPrimary: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
_, err = media.NewStreamingEndpoint(ctx, "exampleStreamingEndpoint", &media.StreamingEndpointArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
MediaServicesAccountName: exampleServiceAccount.Name,
ScaleUnits: pulumi.Int(2),
AccessControl: &media.StreamingEndpointAccessControlArgs{
IpAllows: media.StreamingEndpointAccessControlIpAllowArray{
&media.StreamingEndpointAccessControlIpAllowArgs{
Name: pulumi.String("AllowedIP"),
Address: pulumi.String("192.168.1.1"),
},
&media.StreamingEndpointAccessControlIpAllowArgs{
Name: pulumi.String("AnotherIp"),
Address: pulumi.String("192.168.1.2"),
},
},
AkamaiSignatureHeaderAuthenticationKeys: media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArray{
&media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs{
Identifier: pulumi.String("id1"),
Expiration: pulumi.String("2030-12-31T16:00:00Z"),
Base64Key: pulumi.String("dGVzdGlkMQ=="),
},
&media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs{
Identifier: pulumi.String("id2"),
Expiration: pulumi.String("2032-01-28T16:00:00Z"),
Base64Key: pulumi.String("dGVzdGlkMQ=="),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleServiceAccount = new azure.media.ServiceAccount("exampleServiceAccount", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
storageAccounts: [{
id: exampleAccount.id,
isPrimary: true,
}],
});
const exampleStreamingEndpoint = new azure.media.StreamingEndpoint("exampleStreamingEndpoint", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
mediaServicesAccountName: exampleServiceAccount.name,
scaleUnits: 2,
accessControl: {
ipAllows: [
{
name: "AllowedIP",
address: "192.168.1.1",
},
{
name: "AnotherIp",
address: "192.168.1.2",
},
],
akamaiSignatureHeaderAuthenticationKeys: [
{
identifier: "id1",
expiration: "2030-12-31T16:00:00Z",
base64Key: "dGVzdGlkMQ==",
},
{
identifier: "id2",
expiration: "2032-01-28T16:00:00Z",
base64Key: "dGVzdGlkMQ==",
},
],
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="GRS")
example_service_account = azure.media.ServiceAccount("exampleServiceAccount",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
storage_accounts=[azure.media.ServiceAccountStorageAccountArgs(
id=example_account.id,
is_primary=True,
)])
example_streaming_endpoint = azure.media.StreamingEndpoint("exampleStreamingEndpoint",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
media_services_account_name=example_service_account.name,
scale_units=2,
access_control=azure.media.StreamingEndpointAccessControlArgs(
ip_allows=[
azure.media.StreamingEndpointAccessControlIpAllowArgs(
name="AllowedIP",
address="192.168.1.1",
),
azure.media.StreamingEndpointAccessControlIpAllowArgs(
name="AnotherIp",
address="192.168.1.2",
),
],
akamai_signature_header_authentication_keys=[
azure.media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs(
identifier="id1",
expiration="2030-12-31T16:00:00Z",
base64_key="dGVzdGlkMQ==",
),
azure.media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs(
identifier="id2",
expiration="2032-01-28T16:00:00Z",
base64_key="dGVzdGlkMQ==",
),
],
))
Example coming soon!
Create StreamingEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StreamingEndpoint(name: string, args: StreamingEndpointArgs, opts?: CustomResourceOptions);@overload
def StreamingEndpoint(resource_name: str,
args: StreamingEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StreamingEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
media_services_account_name: Optional[str] = None,
scale_units: Optional[int] = None,
resource_group_name: Optional[str] = None,
custom_host_names: Optional[Sequence[str]] = None,
cdn_provider: Optional[str] = None,
cross_site_access_policy: Optional[StreamingEndpointCrossSiteAccessPolicyArgs] = None,
access_control: Optional[StreamingEndpointAccessControlArgs] = None,
description: Optional[str] = None,
location: Optional[str] = None,
max_cache_age_seconds: Optional[int] = None,
cdn_profile: Optional[str] = None,
name: Optional[str] = None,
cdn_enabled: Optional[bool] = None,
auto_start_enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None)func NewStreamingEndpoint(ctx *Context, name string, args StreamingEndpointArgs, opts ...ResourceOption) (*StreamingEndpoint, error)public StreamingEndpoint(string name, StreamingEndpointArgs args, CustomResourceOptions? opts = null)
public StreamingEndpoint(String name, StreamingEndpointArgs args)
public StreamingEndpoint(String name, StreamingEndpointArgs args, CustomResourceOptions options)
type: azure:media:StreamingEndpoint
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 StreamingEndpointArgs
- 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 StreamingEndpointArgs
- 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 StreamingEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StreamingEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StreamingEndpointArgs
- 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 streamingEndpointResource = new Azure.Media.StreamingEndpoint("streamingEndpointResource", new()
{
MediaServicesAccountName = "string",
ScaleUnits = 0,
ResourceGroupName = "string",
CustomHostNames = new[]
{
"string",
},
CdnProvider = "string",
CrossSiteAccessPolicy = new Azure.Media.Inputs.StreamingEndpointCrossSiteAccessPolicyArgs
{
ClientAccessPolicy = "string",
CrossDomainPolicy = "string",
},
AccessControl = new Azure.Media.Inputs.StreamingEndpointAccessControlArgs
{
AkamaiSignatureHeaderAuthenticationKeys = new[]
{
new Azure.Media.Inputs.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs
{
Base64Key = "string",
Expiration = "string",
Identifier = "string",
},
},
IpAllows = new[]
{
new Azure.Media.Inputs.StreamingEndpointAccessControlIpAllowArgs
{
Address = "string",
Name = "string",
SubnetPrefixLength = 0,
},
},
},
Description = "string",
Location = "string",
MaxCacheAgeSeconds = 0,
CdnProfile = "string",
Name = "string",
CdnEnabled = false,
AutoStartEnabled = false,
Tags =
{
{ "string", "string" },
},
});
example, err := media.NewStreamingEndpoint(ctx, "streamingEndpointResource", &media.StreamingEndpointArgs{
MediaServicesAccountName: pulumi.String("string"),
ScaleUnits: pulumi.Int(0),
ResourceGroupName: pulumi.String("string"),
CustomHostNames: pulumi.StringArray{
pulumi.String("string"),
},
CdnProvider: pulumi.String("string"),
CrossSiteAccessPolicy: &media.StreamingEndpointCrossSiteAccessPolicyArgs{
ClientAccessPolicy: pulumi.String("string"),
CrossDomainPolicy: pulumi.String("string"),
},
AccessControl: &media.StreamingEndpointAccessControlArgs{
AkamaiSignatureHeaderAuthenticationKeys: media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArray{
&media.StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs{
Base64Key: pulumi.String("string"),
Expiration: pulumi.String("string"),
Identifier: pulumi.String("string"),
},
},
IpAllows: media.StreamingEndpointAccessControlIpAllowArray{
&media.StreamingEndpointAccessControlIpAllowArgs{
Address: pulumi.String("string"),
Name: pulumi.String("string"),
SubnetPrefixLength: pulumi.Int(0),
},
},
},
Description: pulumi.String("string"),
Location: pulumi.String("string"),
MaxCacheAgeSeconds: pulumi.Int(0),
CdnProfile: pulumi.String("string"),
Name: pulumi.String("string"),
CdnEnabled: pulumi.Bool(false),
AutoStartEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var streamingEndpointResource = new StreamingEndpoint("streamingEndpointResource", StreamingEndpointArgs.builder()
.mediaServicesAccountName("string")
.scaleUnits(0)
.resourceGroupName("string")
.customHostNames("string")
.cdnProvider("string")
.crossSiteAccessPolicy(StreamingEndpointCrossSiteAccessPolicyArgs.builder()
.clientAccessPolicy("string")
.crossDomainPolicy("string")
.build())
.accessControl(StreamingEndpointAccessControlArgs.builder()
.akamaiSignatureHeaderAuthenticationKeys(StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs.builder()
.base64Key("string")
.expiration("string")
.identifier("string")
.build())
.ipAllows(StreamingEndpointAccessControlIpAllowArgs.builder()
.address("string")
.name("string")
.subnetPrefixLength(0)
.build())
.build())
.description("string")
.location("string")
.maxCacheAgeSeconds(0)
.cdnProfile("string")
.name("string")
.cdnEnabled(false)
.autoStartEnabled(false)
.tags(Map.of("string", "string"))
.build());
streaming_endpoint_resource = azure.media.StreamingEndpoint("streamingEndpointResource",
media_services_account_name="string",
scale_units=0,
resource_group_name="string",
custom_host_names=["string"],
cdn_provider="string",
cross_site_access_policy={
"client_access_policy": "string",
"cross_domain_policy": "string",
},
access_control={
"akamai_signature_header_authentication_keys": [{
"base64_key": "string",
"expiration": "string",
"identifier": "string",
}],
"ip_allows": [{
"address": "string",
"name": "string",
"subnet_prefix_length": 0,
}],
},
description="string",
location="string",
max_cache_age_seconds=0,
cdn_profile="string",
name="string",
cdn_enabled=False,
auto_start_enabled=False,
tags={
"string": "string",
})
const streamingEndpointResource = new azure.media.StreamingEndpoint("streamingEndpointResource", {
mediaServicesAccountName: "string",
scaleUnits: 0,
resourceGroupName: "string",
customHostNames: ["string"],
cdnProvider: "string",
crossSiteAccessPolicy: {
clientAccessPolicy: "string",
crossDomainPolicy: "string",
},
accessControl: {
akamaiSignatureHeaderAuthenticationKeys: [{
base64Key: "string",
expiration: "string",
identifier: "string",
}],
ipAllows: [{
address: "string",
name: "string",
subnetPrefixLength: 0,
}],
},
description: "string",
location: "string",
maxCacheAgeSeconds: 0,
cdnProfile: "string",
name: "string",
cdnEnabled: false,
autoStartEnabled: false,
tags: {
string: "string",
},
});
type: azure:media:StreamingEndpoint
properties:
accessControl:
akamaiSignatureHeaderAuthenticationKeys:
- base64Key: string
expiration: string
identifier: string
ipAllows:
- address: string
name: string
subnetPrefixLength: 0
autoStartEnabled: false
cdnEnabled: false
cdnProfile: string
cdnProvider: string
crossSiteAccessPolicy:
clientAccessPolicy: string
crossDomainPolicy: string
customHostNames:
- string
description: string
location: string
maxCacheAgeSeconds: 0
mediaServicesAccountName: string
name: string
resourceGroupName: string
scaleUnits: 0
tags:
string: string
StreamingEndpoint 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 StreamingEndpoint resource accepts the following input properties:
- Media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- Resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Scale
Units int - The number of scale units.
- Access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - Auto
Start boolEnabled - The flag indicates if the resource should be automatically started on creation.
- Cdn
Enabled bool - The CDN enabled flag.
- Cdn
Profile string - The CDN profile name.
- Cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - Cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - Custom
Host List<string>Names - The custom host names of the streaming endpoint.
- Description string
- The streaming endpoint description.
- Location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Max
Cache intAge Seconds - Max cache age in seconds.
- Name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Streaming Endpoint.
- Media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- Resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Scale
Units int - The number of scale units.
- Access
Control StreamingEndpoint Access Control Args - A
access_controlblock as defined below. - Auto
Start boolEnabled - The flag indicates if the resource should be automatically started on creation.
- Cdn
Enabled bool - The CDN enabled flag.
- Cdn
Profile string - The CDN profile name.
- Cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - Cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy Args - A
cross_site_access_policyblock as defined below. - Custom
Host []stringNames - The custom host names of the streaming endpoint.
- Description string
- The streaming endpoint description.
- Location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Max
Cache intAge Seconds - Max cache age in seconds.
- Name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- map[string]string
- A mapping of tags which should be assigned to the Streaming Endpoint.
- media
Services StringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- resource
Group StringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units Integer - The number of scale units.
- access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - auto
Start BooleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled Boolean - The CDN enabled flag.
- cdn
Profile String - The CDN profile name.
- cdn
Provider String - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - custom
Host List<String>Names - The custom host names of the streaming endpoint.
- description String
- The streaming endpoint description.
- location String
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache IntegerAge Seconds - Max cache age in seconds.
- name String
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Streaming Endpoint.
- media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units number - The number of scale units.
- access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - auto
Start booleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled boolean - The CDN enabled flag.
- cdn
Profile string - The CDN profile name.
- cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - custom
Host string[]Names - The custom host names of the streaming endpoint.
- description string
- The streaming endpoint description.
- location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache numberAge Seconds - Max cache age in seconds.
- name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Streaming Endpoint.
- media_
services_ straccount_ name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- resource_
group_ strname - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale_
units int - The number of scale units.
- access_
control StreamingEndpoint Access Control Args - A
access_controlblock as defined below. - auto_
start_ boolenabled - The flag indicates if the resource should be automatically started on creation.
- cdn_
enabled bool - The CDN enabled flag.
- cdn_
profile str - The CDN profile name.
- cdn_
provider str - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross_
site_ Streamingaccess_ policy Endpoint Cross Site Access Policy Args - A
cross_site_access_policyblock as defined below. - custom_
host_ Sequence[str]names - The custom host names of the streaming endpoint.
- description str
- The streaming endpoint description.
- location str
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max_
cache_ intage_ seconds - Max cache age in seconds.
- name str
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Streaming Endpoint.
- media
Services StringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- resource
Group StringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units Number - The number of scale units.
- access
Control Property Map - A
access_controlblock as defined below. - auto
Start BooleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled Boolean - The CDN enabled flag.
- cdn
Profile String - The CDN profile name.
- cdn
Provider String - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site Property MapAccess Policy - A
cross_site_access_policyblock as defined below. - custom
Host List<String>Names - The custom host names of the streaming endpoint.
- description String
- The streaming endpoint description.
- location String
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache NumberAge Seconds - Max cache age in seconds.
- name String
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Map<String>
- A mapping of tags which should be assigned to the Streaming Endpoint.
Outputs
All input properties are implicitly available as output properties. Additionally, the StreamingEndpoint resource produces the following output properties:
Look up Existing StreamingEndpoint Resource
Get an existing StreamingEndpoint 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?: StreamingEndpointState, opts?: CustomResourceOptions): StreamingEndpoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_control: Optional[StreamingEndpointAccessControlArgs] = None,
auto_start_enabled: Optional[bool] = None,
cdn_enabled: Optional[bool] = None,
cdn_profile: Optional[str] = None,
cdn_provider: Optional[str] = None,
cross_site_access_policy: Optional[StreamingEndpointCrossSiteAccessPolicyArgs] = None,
custom_host_names: Optional[Sequence[str]] = None,
description: Optional[str] = None,
host_name: Optional[str] = None,
location: Optional[str] = None,
max_cache_age_seconds: Optional[int] = None,
media_services_account_name: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
scale_units: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None) -> StreamingEndpointfunc GetStreamingEndpoint(ctx *Context, name string, id IDInput, state *StreamingEndpointState, opts ...ResourceOption) (*StreamingEndpoint, error)public static StreamingEndpoint Get(string name, Input<string> id, StreamingEndpointState? state, CustomResourceOptions? opts = null)public static StreamingEndpoint get(String name, Output<String> id, StreamingEndpointState state, CustomResourceOptions options)resources: _: type: azure:media:StreamingEndpoint 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.
- Access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - Auto
Start boolEnabled - The flag indicates if the resource should be automatically started on creation.
- Cdn
Enabled bool - The CDN enabled flag.
- Cdn
Profile string - The CDN profile name.
- Cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - Cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - Custom
Host List<string>Names - The custom host names of the streaming endpoint.
- Description string
- The streaming endpoint description.
- Host
Name string - The host name of the Streaming Endpoint.
- Location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Max
Cache intAge Seconds - Max cache age in seconds.
- Media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- Name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Scale
Units int - The number of scale units.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Streaming Endpoint.
- Access
Control StreamingEndpoint Access Control Args - A
access_controlblock as defined below. - Auto
Start boolEnabled - The flag indicates if the resource should be automatically started on creation.
- Cdn
Enabled bool - The CDN enabled flag.
- Cdn
Profile string - The CDN profile name.
- Cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - Cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy Args - A
cross_site_access_policyblock as defined below. - Custom
Host []stringNames - The custom host names of the streaming endpoint.
- Description string
- The streaming endpoint description.
- Host
Name string - The host name of the Streaming Endpoint.
- Location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Max
Cache intAge Seconds - Max cache age in seconds.
- Media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- Name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- Resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- Scale
Units int - The number of scale units.
- map[string]string
- A mapping of tags which should be assigned to the Streaming Endpoint.
- access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - auto
Start BooleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled Boolean - The CDN enabled flag.
- cdn
Profile String - The CDN profile name.
- cdn
Provider String - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - custom
Host List<String>Names - The custom host names of the streaming endpoint.
- description String
- The streaming endpoint description.
- host
Name String - The host name of the Streaming Endpoint.
- location String
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache IntegerAge Seconds - Max cache age in seconds.
- media
Services StringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- name String
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- resource
Group StringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units Integer - The number of scale units.
- Map<String,String>
- A mapping of tags which should be assigned to the Streaming Endpoint.
- access
Control StreamingEndpoint Access Control - A
access_controlblock as defined below. - auto
Start booleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled boolean - The CDN enabled flag.
- cdn
Profile string - The CDN profile name.
- cdn
Provider string - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site StreamingAccess Policy Endpoint Cross Site Access Policy - A
cross_site_access_policyblock as defined below. - custom
Host string[]Names - The custom host names of the streaming endpoint.
- description string
- The streaming endpoint description.
- host
Name string - The host name of the Streaming Endpoint.
- location string
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache numberAge Seconds - Max cache age in seconds.
- media
Services stringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- name string
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- resource
Group stringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units number - The number of scale units.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Streaming Endpoint.
- access_
control StreamingEndpoint Access Control Args - A
access_controlblock as defined below. - auto_
start_ boolenabled - The flag indicates if the resource should be automatically started on creation.
- cdn_
enabled bool - The CDN enabled flag.
- cdn_
profile str - The CDN profile name.
- cdn_
provider str - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross_
site_ Streamingaccess_ policy Endpoint Cross Site Access Policy Args - A
cross_site_access_policyblock as defined below. - custom_
host_ Sequence[str]names - The custom host names of the streaming endpoint.
- description str
- The streaming endpoint description.
- host_
name str - The host name of the Streaming Endpoint.
- location str
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max_
cache_ intage_ seconds - Max cache age in seconds.
- media_
services_ straccount_ name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- name str
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- resource_
group_ strname - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale_
units int - The number of scale units.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Streaming Endpoint.
- access
Control Property Map - A
access_controlblock as defined below. - auto
Start BooleanEnabled - The flag indicates if the resource should be automatically started on creation.
- cdn
Enabled Boolean - The CDN enabled flag.
- cdn
Profile String - The CDN profile name.
- cdn
Provider String - The CDN provider name. Supported value are
StandardVerizon,PremiumVerizonandStandardAkamai - cross
Site Property MapAccess Policy - A
cross_site_access_policyblock as defined below. - custom
Host List<String>Names - The custom host names of the streaming endpoint.
- description String
- The streaming endpoint description.
- host
Name String - The host name of the Streaming Endpoint.
- location String
- The Azure Region where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- max
Cache NumberAge Seconds - Max cache age in seconds.
- media
Services StringAccount Name - The Media Services account name. Changing this forces a new Streaming Endpoint to be created.
- name String
- The name which should be used for this Streaming Endpoint maximum length is 24. Changing this forces a new Streaming Endpoint to be created.
- resource
Group StringName - The name of the Resource Group where the Streaming Endpoint should exist. Changing this forces a new Streaming Endpoint to be created.
- scale
Units Number - The number of scale units.
- Map<String>
- A mapping of tags which should be assigned to the Streaming Endpoint.
Supporting Types
StreamingEndpointAccessControl, StreamingEndpointAccessControlArgs
- Akamai
Signature List<StreamingHeader Authentication Keys Endpoint Access Control Akamai Signature Header Authentication Key> - One or more
akamai_signature_header_authentication_keyblocks as defined below. - Ip
Allows List<StreamingEndpoint Access Control Ip Allow> - A
ipblock as defined below.
- Akamai
Signature []StreamingHeader Authentication Keys Endpoint Access Control Akamai Signature Header Authentication Key - One or more
akamai_signature_header_authentication_keyblocks as defined below. - Ip
Allows []StreamingEndpoint Access Control Ip Allow - A
ipblock as defined below.
- akamai
Signature List<StreamingHeader Authentication Keys Endpoint Access Control Akamai Signature Header Authentication Key> - One or more
akamai_signature_header_authentication_keyblocks as defined below. - ip
Allows List<StreamingEndpoint Access Control Ip Allow> - A
ipblock as defined below.
- akamai
Signature StreamingHeader Authentication Keys Endpoint Access Control Akamai Signature Header Authentication Key[] - One or more
akamai_signature_header_authentication_keyblocks as defined below. - ip
Allows StreamingEndpoint Access Control Ip Allow[] - A
ipblock as defined below.
- akamai_
signature_ Sequence[Streamingheader_ authentication_ keys Endpoint Access Control Akamai Signature Header Authentication Key] - One or more
akamai_signature_header_authentication_keyblocks as defined below. - ip_
allows Sequence[StreamingEndpoint Access Control Ip Allow] - A
ipblock as defined below.
- akamai
Signature List<Property Map>Header Authentication Keys - One or more
akamai_signature_header_authentication_keyblocks as defined below. - ip
Allows List<Property Map> - A
ipblock as defined below.
StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKey, StreamingEndpointAccessControlAkamaiSignatureHeaderAuthenticationKeyArgs
- Base64Key string
- Authentication key.
- Expiration string
- The expiration time of the authentication key.
- Identifier string
- Identifier of the key.
- Base64Key string
- Authentication key.
- Expiration string
- The expiration time of the authentication key.
- Identifier string
- Identifier of the key.
- base64Key String
- Authentication key.
- expiration String
- The expiration time of the authentication key.
- identifier String
- Identifier of the key.
- base64Key string
- Authentication key.
- expiration string
- The expiration time of the authentication key.
- identifier string
- Identifier of the key.
- base64_
key str - Authentication key.
- expiration str
- The expiration time of the authentication key.
- identifier str
- Identifier of the key.
- base64Key String
- Authentication key.
- expiration String
- The expiration time of the authentication key.
- identifier String
- Identifier of the key.
StreamingEndpointAccessControlIpAllow, StreamingEndpointAccessControlIpAllowArgs
- Address string
- The IP address to allow.
- Name string
- The friendly name for the IP address range.
- Subnet
Prefix intLength - The subnet mask prefix length (see CIDR notation).
- Address string
- The IP address to allow.
- Name string
- The friendly name for the IP address range.
- Subnet
Prefix intLength - The subnet mask prefix length (see CIDR notation).
- address String
- The IP address to allow.
- name String
- The friendly name for the IP address range.
- subnet
Prefix IntegerLength - The subnet mask prefix length (see CIDR notation).
- address string
- The IP address to allow.
- name string
- The friendly name for the IP address range.
- subnet
Prefix numberLength - The subnet mask prefix length (see CIDR notation).
- address str
- The IP address to allow.
- name str
- The friendly name for the IP address range.
- subnet_
prefix_ intlength - The subnet mask prefix length (see CIDR notation).
- address String
- The IP address to allow.
- name String
- The friendly name for the IP address range.
- subnet
Prefix NumberLength - The subnet mask prefix length (see CIDR notation).
StreamingEndpointCrossSiteAccessPolicy, StreamingEndpointCrossSiteAccessPolicyArgs
- Client
Access stringPolicy - The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy - The content of crossdomain.xml used by Silverlight.
- Client
Access stringPolicy - The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy - The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy - The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy - The content of crossdomain.xml used by Silverlight.
- client
Access stringPolicy - The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain stringPolicy - The content of crossdomain.xml used by Silverlight.
- client_
access_ strpolicy - The content of clientaccesspolicy.xml used by Silverlight.
- cross_
domain_ strpolicy - The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy - The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy - The content of crossdomain.xml used by Silverlight.
Import
Streaming Endpoints can be imported using the resource id, e.g.
$ pulumi import azure:media/streamingEndpoint:StreamingEndpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Media/mediaservices/service1/streamingendpoints/endpoint1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
