1. Packages
  2. Azure Native
  3. API Docs
  4. media
  5. StreamingEndpoint
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.media.StreamingEndpoint

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    The streaming endpoint. Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-05-01.

    Other available API versions: 2018-06-01-preview.

    Example Usage

    Create a streaming endpoint

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var streamingEndpoint = new AzureNative.Media.StreamingEndpoint("streamingEndpoint", new()
        {
            AccessControl = new AzureNative.Media.Inputs.StreamingEndpointAccessControlArgs
            {
                Akamai = new AzureNative.Media.Inputs.AkamaiAccessControlArgs
                {
                    AkamaiSignatureHeaderAuthenticationKeyList = new[]
                    {
                        new AzureNative.Media.Inputs.AkamaiSignatureHeaderAuthenticationKeyArgs
                        {
                            Base64Key = "dGVzdGlkMQ==",
                            Expiration = "2029-12-31T16:00:00-08:00",
                            Identifier = "id1",
                        },
                        new AzureNative.Media.Inputs.AkamaiSignatureHeaderAuthenticationKeyArgs
                        {
                            Base64Key = "dGVzdGlkMQ==",
                            Expiration = "2030-12-31T16:00:00-08:00",
                            Identifier = "id2",
                        },
                    },
                },
                Ip = new AzureNative.Media.Inputs.IPAccessControlArgs
                {
                    Allow = new[]
                    {
                        new AzureNative.Media.Inputs.IPRangeArgs
                        {
                            Address = "192.168.1.1",
                            Name = "AllowedIp",
                        },
                    },
                },
            },
            AccountName = "slitestmedia10",
            AvailabilitySetName = "availableset",
            CdnEnabled = false,
            Description = "test event 1",
            Location = "West US",
            ResourceGroupName = "mediaresources",
            ScaleUnits = 1,
            StreamingEndpointName = "myStreamingEndpoint1",
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/media/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := media.NewStreamingEndpoint(ctx, "streamingEndpoint", &media.StreamingEndpointArgs{
    			AccessControl: &media.StreamingEndpointAccessControlArgs{
    				Akamai: &media.AkamaiAccessControlArgs{
    					AkamaiSignatureHeaderAuthenticationKeyList: media.AkamaiSignatureHeaderAuthenticationKeyArray{
    						&media.AkamaiSignatureHeaderAuthenticationKeyArgs{
    							Base64Key:  pulumi.String("dGVzdGlkMQ=="),
    							Expiration: pulumi.String("2029-12-31T16:00:00-08:00"),
    							Identifier: pulumi.String("id1"),
    						},
    						&media.AkamaiSignatureHeaderAuthenticationKeyArgs{
    							Base64Key:  pulumi.String("dGVzdGlkMQ=="),
    							Expiration: pulumi.String("2030-12-31T16:00:00-08:00"),
    							Identifier: pulumi.String("id2"),
    						},
    					},
    				},
    				Ip: &media.IPAccessControlArgs{
    					Allow: media.IPRangeArray{
    						&media.IPRangeArgs{
    							Address: pulumi.String("192.168.1.1"),
    							Name:    pulumi.String("AllowedIp"),
    						},
    					},
    				},
    			},
    			AccountName:           pulumi.String("slitestmedia10"),
    			AvailabilitySetName:   pulumi.String("availableset"),
    			CdnEnabled:            pulumi.Bool(false),
    			Description:           pulumi.String("test event 1"),
    			Location:              pulumi.String("West US"),
    			ResourceGroupName:     pulumi.String("mediaresources"),
    			ScaleUnits:            pulumi.Int(1),
    			StreamingEndpointName: pulumi.String("myStreamingEndpoint1"),
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.media.StreamingEndpoint;
    import com.pulumi.azurenative.media.StreamingEndpointArgs;
    import com.pulumi.azurenative.media.inputs.StreamingEndpointAccessControlArgs;
    import com.pulumi.azurenative.media.inputs.AkamaiAccessControlArgs;
    import com.pulumi.azurenative.media.inputs.IPAccessControlArgs;
    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 streamingEndpoint = new StreamingEndpoint("streamingEndpoint", StreamingEndpointArgs.builder()        
                .accessControl(StreamingEndpointAccessControlArgs.builder()
                    .akamai(AkamaiAccessControlArgs.builder()
                        .akamaiSignatureHeaderAuthenticationKeyList(                    
                            AkamaiSignatureHeaderAuthenticationKeyArgs.builder()
                                .base64Key("dGVzdGlkMQ==")
                                .expiration("2029-12-31T16:00:00-08:00")
                                .identifier("id1")
                                .build(),
                            AkamaiSignatureHeaderAuthenticationKeyArgs.builder()
                                .base64Key("dGVzdGlkMQ==")
                                .expiration("2030-12-31T16:00:00-08:00")
                                .identifier("id2")
                                .build())
                        .build())
                    .ip(IPAccessControlArgs.builder()
                        .allow(IPRangeArgs.builder()
                            .address("192.168.1.1")
                            .name("AllowedIp")
                            .build())
                        .build())
                    .build())
                .accountName("slitestmedia10")
                .availabilitySetName("availableset")
                .cdnEnabled(false)
                .description("test event 1")
                .location("West US")
                .resourceGroupName("mediaresources")
                .scaleUnits(1)
                .streamingEndpointName("myStreamingEndpoint1")
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    streaming_endpoint = azure_native.media.StreamingEndpoint("streamingEndpoint",
        access_control=azure_native.media.StreamingEndpointAccessControlArgs(
            akamai=azure_native.media.AkamaiAccessControlArgs(
                akamai_signature_header_authentication_key_list=[
                    azure_native.media.AkamaiSignatureHeaderAuthenticationKeyArgs(
                        base64_key="dGVzdGlkMQ==",
                        expiration="2029-12-31T16:00:00-08:00",
                        identifier="id1",
                    ),
                    azure_native.media.AkamaiSignatureHeaderAuthenticationKeyArgs(
                        base64_key="dGVzdGlkMQ==",
                        expiration="2030-12-31T16:00:00-08:00",
                        identifier="id2",
                    ),
                ],
            ),
            ip=azure_native.media.IPAccessControlArgs(
                allow=[azure_native.media.IPRangeArgs(
                    address="192.168.1.1",
                    name="AllowedIp",
                )],
            ),
        ),
        account_name="slitestmedia10",
        availability_set_name="availableset",
        cdn_enabled=False,
        description="test event 1",
        location="West US",
        resource_group_name="mediaresources",
        scale_units=1,
        streaming_endpoint_name="myStreamingEndpoint1",
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const streamingEndpoint = new azure_native.media.StreamingEndpoint("streamingEndpoint", {
        accessControl: {
            akamai: {
                akamaiSignatureHeaderAuthenticationKeyList: [
                    {
                        base64Key: "dGVzdGlkMQ==",
                        expiration: "2029-12-31T16:00:00-08:00",
                        identifier: "id1",
                    },
                    {
                        base64Key: "dGVzdGlkMQ==",
                        expiration: "2030-12-31T16:00:00-08:00",
                        identifier: "id2",
                    },
                ],
            },
            ip: {
                allow: [{
                    address: "192.168.1.1",
                    name: "AllowedIp",
                }],
            },
        },
        accountName: "slitestmedia10",
        availabilitySetName: "availableset",
        cdnEnabled: false,
        description: "test event 1",
        location: "West US",
        resourceGroupName: "mediaresources",
        scaleUnits: 1,
        streamingEndpointName: "myStreamingEndpoint1",
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    resources:
      streamingEndpoint:
        type: azure-native:media:StreamingEndpoint
        properties:
          accessControl:
            akamai:
              akamaiSignatureHeaderAuthenticationKeyList:
                - base64Key: dGVzdGlkMQ==
                  expiration: 2029-12-31T16:00:00-08:00
                  identifier: id1
                - base64Key: dGVzdGlkMQ==
                  expiration: 2030-12-31T16:00:00-08:00
                  identifier: id2
            ip:
              allow:
                - address: 192.168.1.1
                  name: AllowedIp
          accountName: slitestmedia10
          availabilitySetName: availableset
          cdnEnabled: false
          description: test event 1
          location: West US
          resourceGroupName: mediaresources
          scaleUnits: 1
          streamingEndpointName: myStreamingEndpoint1
          tags:
            tag1: value1
            tag2: value2
    

    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,
                          resource_group_name: Optional[str] = None,
                          account_name: Optional[str] = None,
                          scale_units: Optional[int] = None,
                          cdn_enabled: Optional[bool] = None,
                          location: Optional[str] = None,
                          cdn_profile: Optional[str] = None,
                          cdn_provider: Optional[str] = None,
                          cross_site_access_policies: Optional[CrossSiteAccessPoliciesArgs] = None,
                          custom_host_names: Optional[Sequence[str]] = None,
                          description: Optional[str] = None,
                          access_control: Optional[StreamingEndpointAccessControlArgs] = None,
                          max_cache_age: Optional[float] = None,
                          availability_set_name: Optional[str] = None,
                          auto_start: Optional[bool] = None,
                          sku: Optional[ArmStreamingEndpointCurrentSkuArgs] = None,
                          streaming_endpoint_name: Optional[str] = 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-native: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.

    Example

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

    var streamingEndpointResource = new AzureNative.Media.StreamingEndpoint("streamingEndpointResource", new()
    {
        ResourceGroupName = "string",
        AccountName = "string",
        ScaleUnits = 0,
        CdnEnabled = false,
        Location = "string",
        CdnProfile = "string",
        CdnProvider = "string",
        CrossSiteAccessPolicies = new AzureNative.Media.Inputs.CrossSiteAccessPoliciesArgs
        {
            ClientAccessPolicy = "string",
            CrossDomainPolicy = "string",
        },
        CustomHostNames = new[]
        {
            "string",
        },
        Description = "string",
        AccessControl = new AzureNative.Media.Inputs.StreamingEndpointAccessControlArgs
        {
            Akamai = new AzureNative.Media.Inputs.AkamaiAccessControlArgs
            {
                AkamaiSignatureHeaderAuthenticationKeyList = new[]
                {
                    new AzureNative.Media.Inputs.AkamaiSignatureHeaderAuthenticationKeyArgs
                    {
                        Base64Key = "string",
                        Expiration = "string",
                        Identifier = "string",
                    },
                },
            },
            Ip = new AzureNative.Media.Inputs.IPAccessControlArgs
            {
                Allow = new[]
                {
                    new AzureNative.Media.Inputs.IPRangeArgs
                    {
                        Address = "string",
                        Name = "string",
                        SubnetPrefixLength = 0,
                    },
                },
            },
        },
        MaxCacheAge = 0,
        AvailabilitySetName = "string",
        AutoStart = false,
        Sku = new AzureNative.Media.Inputs.ArmStreamingEndpointCurrentSkuArgs
        {
            Capacity = 0,
        },
        StreamingEndpointName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := media.NewStreamingEndpoint(ctx, "streamingEndpointResource", &media.StreamingEndpointArgs{
    ResourceGroupName: pulumi.String("string"),
    AccountName: pulumi.String("string"),
    ScaleUnits: pulumi.Int(0),
    CdnEnabled: pulumi.Bool(false),
    Location: pulumi.String("string"),
    CdnProfile: pulumi.String("string"),
    CdnProvider: pulumi.String("string"),
    CrossSiteAccessPolicies: &media.CrossSiteAccessPoliciesArgs{
    ClientAccessPolicy: pulumi.String("string"),
    CrossDomainPolicy: pulumi.String("string"),
    },
    CustomHostNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    AccessControl: &media.StreamingEndpointAccessControlArgs{
    Akamai: &media.AkamaiAccessControlArgs{
    AkamaiSignatureHeaderAuthenticationKeyList: media.AkamaiSignatureHeaderAuthenticationKeyArray{
    &media.AkamaiSignatureHeaderAuthenticationKeyArgs{
    Base64Key: pulumi.String("string"),
    Expiration: pulumi.String("string"),
    Identifier: pulumi.String("string"),
    },
    },
    },
    Ip: &media.IPAccessControlArgs{
    Allow: media.IPRangeArray{
    &media.IPRangeArgs{
    Address: pulumi.String("string"),
    Name: pulumi.String("string"),
    SubnetPrefixLength: pulumi.Int(0),
    },
    },
    },
    },
    MaxCacheAge: pulumi.Float64(0),
    AvailabilitySetName: pulumi.String("string"),
    AutoStart: pulumi.Bool(false),
    Sku: &media.ArmStreamingEndpointCurrentSkuArgs{
    Capacity: pulumi.Int(0),
    },
    StreamingEndpointName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var streamingEndpointResource = new StreamingEndpoint("streamingEndpointResource", StreamingEndpointArgs.builder()        
        .resourceGroupName("string")
        .accountName("string")
        .scaleUnits(0)
        .cdnEnabled(false)
        .location("string")
        .cdnProfile("string")
        .cdnProvider("string")
        .crossSiteAccessPolicies(CrossSiteAccessPoliciesArgs.builder()
            .clientAccessPolicy("string")
            .crossDomainPolicy("string")
            .build())
        .customHostNames("string")
        .description("string")
        .accessControl(StreamingEndpointAccessControlArgs.builder()
            .akamai(AkamaiAccessControlArgs.builder()
                .akamaiSignatureHeaderAuthenticationKeyList(AkamaiSignatureHeaderAuthenticationKeyArgs.builder()
                    .base64Key("string")
                    .expiration("string")
                    .identifier("string")
                    .build())
                .build())
            .ip(IPAccessControlArgs.builder()
                .allow(IPRangeArgs.builder()
                    .address("string")
                    .name("string")
                    .subnetPrefixLength(0)
                    .build())
                .build())
            .build())
        .maxCacheAge(0)
        .availabilitySetName("string")
        .autoStart(false)
        .sku(ArmStreamingEndpointCurrentSkuArgs.builder()
            .capacity(0)
            .build())
        .streamingEndpointName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    streaming_endpoint_resource = azure_native.media.StreamingEndpoint("streamingEndpointResource",
        resource_group_name="string",
        account_name="string",
        scale_units=0,
        cdn_enabled=False,
        location="string",
        cdn_profile="string",
        cdn_provider="string",
        cross_site_access_policies=azure_native.media.CrossSiteAccessPoliciesArgs(
            client_access_policy="string",
            cross_domain_policy="string",
        ),
        custom_host_names=["string"],
        description="string",
        access_control=azure_native.media.StreamingEndpointAccessControlArgs(
            akamai=azure_native.media.AkamaiAccessControlArgs(
                akamai_signature_header_authentication_key_list=[azure_native.media.AkamaiSignatureHeaderAuthenticationKeyArgs(
                    base64_key="string",
                    expiration="string",
                    identifier="string",
                )],
            ),
            ip=azure_native.media.IPAccessControlArgs(
                allow=[azure_native.media.IPRangeArgs(
                    address="string",
                    name="string",
                    subnet_prefix_length=0,
                )],
            ),
        ),
        max_cache_age=0,
        availability_set_name="string",
        auto_start=False,
        sku=azure_native.media.ArmStreamingEndpointCurrentSkuArgs(
            capacity=0,
        ),
        streaming_endpoint_name="string",
        tags={
            "string": "string",
        })
    
    const streamingEndpointResource = new azure_native.media.StreamingEndpoint("streamingEndpointResource", {
        resourceGroupName: "string",
        accountName: "string",
        scaleUnits: 0,
        cdnEnabled: false,
        location: "string",
        cdnProfile: "string",
        cdnProvider: "string",
        crossSiteAccessPolicies: {
            clientAccessPolicy: "string",
            crossDomainPolicy: "string",
        },
        customHostNames: ["string"],
        description: "string",
        accessControl: {
            akamai: {
                akamaiSignatureHeaderAuthenticationKeyList: [{
                    base64Key: "string",
                    expiration: "string",
                    identifier: "string",
                }],
            },
            ip: {
                allow: [{
                    address: "string",
                    name: "string",
                    subnetPrefixLength: 0,
                }],
            },
        },
        maxCacheAge: 0,
        availabilitySetName: "string",
        autoStart: false,
        sku: {
            capacity: 0,
        },
        streamingEndpointName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:media:StreamingEndpoint
    properties:
        accessControl:
            akamai:
                akamaiSignatureHeaderAuthenticationKeyList:
                    - base64Key: string
                      expiration: string
                      identifier: string
            ip:
                allow:
                    - address: string
                      name: string
                      subnetPrefixLength: 0
        accountName: string
        autoStart: false
        availabilitySetName: string
        cdnEnabled: false
        cdnProfile: string
        cdnProvider: string
        crossSiteAccessPolicies:
            clientAccessPolicy: string
            crossDomainPolicy: string
        customHostNames:
            - string
        description: string
        location: string
        maxCacheAge: 0
        resourceGroupName: string
        scaleUnits: 0
        sku:
            capacity: 0
        streamingEndpointName: string
        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

    The StreamingEndpoint resource accepts the following input properties:

    AccountName string
    The Media Services account name.
    ResourceGroupName string
    The name of the resource group within the Azure subscription.
    ScaleUnits int
    The number of scale units. Use the Scale operation to adjust this value.
    AccessControl Pulumi.AzureNative.Media.Inputs.StreamingEndpointAccessControl
    The access control definition of the streaming endpoint.
    AutoStart bool
    The flag indicates if the resource should be automatically started on creation.
    AvailabilitySetName string
    This feature is deprecated, do not set a value for this property.
    CdnEnabled bool
    The CDN enabled flag.
    CdnProfile string
    The CDN profile name.
    CdnProvider string
    The CDN provider name.
    CrossSiteAccessPolicies Pulumi.AzureNative.Media.Inputs.CrossSiteAccessPolicies
    The streaming endpoint access policies.
    CustomHostNames List<string>
    The custom host names of the streaming endpoint
    Description string
    The streaming endpoint description.
    Location string
    The geo-location where the resource lives
    MaxCacheAge double
    Max cache age
    Sku Pulumi.AzureNative.Media.Inputs.ArmStreamingEndpointCurrentSku
    The streaming endpoint sku.
    StreamingEndpointName string
    The name of the streaming endpoint, maximum length is 24.
    Tags Dictionary<string, string>
    Resource tags.
    AccountName string
    The Media Services account name.
    ResourceGroupName string
    The name of the resource group within the Azure subscription.
    ScaleUnits int
    The number of scale units. Use the Scale operation to adjust this value.
    AccessControl StreamingEndpointAccessControlArgs
    The access control definition of the streaming endpoint.
    AutoStart bool
    The flag indicates if the resource should be automatically started on creation.
    AvailabilitySetName string
    This feature is deprecated, do not set a value for this property.
    CdnEnabled bool
    The CDN enabled flag.
    CdnProfile string
    The CDN profile name.
    CdnProvider string
    The CDN provider name.
    CrossSiteAccessPolicies CrossSiteAccessPoliciesArgs
    The streaming endpoint access policies.
    CustomHostNames []string
    The custom host names of the streaming endpoint
    Description string
    The streaming endpoint description.
    Location string
    The geo-location where the resource lives
    MaxCacheAge float64
    Max cache age
    Sku ArmStreamingEndpointCurrentSkuArgs
    The streaming endpoint sku.
    StreamingEndpointName string
    The name of the streaming endpoint, maximum length is 24.
    Tags map[string]string
    Resource tags.
    accountName String
    The Media Services account name.
    resourceGroupName String
    The name of the resource group within the Azure subscription.
    scaleUnits Integer
    The number of scale units. Use the Scale operation to adjust this value.
    accessControl StreamingEndpointAccessControl
    The access control definition of the streaming endpoint.
    autoStart Boolean
    The flag indicates if the resource should be automatically started on creation.
    availabilitySetName String
    This feature is deprecated, do not set a value for this property.
    cdnEnabled Boolean
    The CDN enabled flag.
    cdnProfile String
    The CDN profile name.
    cdnProvider String
    The CDN provider name.
    crossSiteAccessPolicies CrossSiteAccessPolicies
    The streaming endpoint access policies.
    customHostNames List<String>
    The custom host names of the streaming endpoint
    description String
    The streaming endpoint description.
    location String
    The geo-location where the resource lives
    maxCacheAge Double
    Max cache age
    sku ArmStreamingEndpointCurrentSku
    The streaming endpoint sku.
    streamingEndpointName String
    The name of the streaming endpoint, maximum length is 24.
    tags Map<String,String>
    Resource tags.
    accountName string
    The Media Services account name.
    resourceGroupName string
    The name of the resource group within the Azure subscription.
    scaleUnits number
    The number of scale units. Use the Scale operation to adjust this value.
    accessControl StreamingEndpointAccessControl
    The access control definition of the streaming endpoint.
    autoStart boolean
    The flag indicates if the resource should be automatically started on creation.
    availabilitySetName string
    This feature is deprecated, do not set a value for this property.
    cdnEnabled boolean
    The CDN enabled flag.
    cdnProfile string
    The CDN profile name.
    cdnProvider string
    The CDN provider name.
    crossSiteAccessPolicies CrossSiteAccessPolicies
    The streaming endpoint access policies.
    customHostNames string[]
    The custom host names of the streaming endpoint
    description string
    The streaming endpoint description.
    location string
    The geo-location where the resource lives
    maxCacheAge number
    Max cache age
    sku ArmStreamingEndpointCurrentSku
    The streaming endpoint sku.
    streamingEndpointName string
    The name of the streaming endpoint, maximum length is 24.
    tags {[key: string]: string}
    Resource tags.
    account_name str
    The Media Services account name.
    resource_group_name str
    The name of the resource group within the Azure subscription.
    scale_units int
    The number of scale units. Use the Scale operation to adjust this value.
    access_control StreamingEndpointAccessControlArgs
    The access control definition of the streaming endpoint.
    auto_start bool
    The flag indicates if the resource should be automatically started on creation.
    availability_set_name str
    This feature is deprecated, do not set a value for this property.
    cdn_enabled bool
    The CDN enabled flag.
    cdn_profile str
    The CDN profile name.
    cdn_provider str
    The CDN provider name.
    cross_site_access_policies CrossSiteAccessPoliciesArgs
    The streaming endpoint access policies.
    custom_host_names Sequence[str]
    The custom host names of the streaming endpoint
    description str
    The streaming endpoint description.
    location str
    The geo-location where the resource lives
    max_cache_age float
    Max cache age
    sku ArmStreamingEndpointCurrentSkuArgs
    The streaming endpoint sku.
    streaming_endpoint_name str
    The name of the streaming endpoint, maximum length is 24.
    tags Mapping[str, str]
    Resource tags.
    accountName String
    The Media Services account name.
    resourceGroupName String
    The name of the resource group within the Azure subscription.
    scaleUnits Number
    The number of scale units. Use the Scale operation to adjust this value.
    accessControl Property Map
    The access control definition of the streaming endpoint.
    autoStart Boolean
    The flag indicates if the resource should be automatically started on creation.
    availabilitySetName String
    This feature is deprecated, do not set a value for this property.
    cdnEnabled Boolean
    The CDN enabled flag.
    cdnProfile String
    The CDN profile name.
    cdnProvider String
    The CDN provider name.
    crossSiteAccessPolicies Property Map
    The streaming endpoint access policies.
    customHostNames List<String>
    The custom host names of the streaming endpoint
    description String
    The streaming endpoint description.
    location String
    The geo-location where the resource lives
    maxCacheAge Number
    Max cache age
    sku Property Map
    The streaming endpoint sku.
    streamingEndpointName String
    The name of the streaming endpoint, maximum length is 24.
    tags Map<String>
    Resource tags.

    Outputs

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

    Created string
    The exact time the streaming endpoint was created.
    FreeTrialEndTime string
    The free trial expiration time.
    HostName string
    The streaming endpoint host name.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModified string
    The exact time the streaming endpoint was last modified.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state of the streaming endpoint.
    ResourceState string
    The resource state of the streaming endpoint.
    SystemData Pulumi.AzureNative.Media.Outputs.SystemDataResponse
    The system metadata relating to this resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Created string
    The exact time the streaming endpoint was created.
    FreeTrialEndTime string
    The free trial expiration time.
    HostName string
    The streaming endpoint host name.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModified string
    The exact time the streaming endpoint was last modified.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state of the streaming endpoint.
    ResourceState string
    The resource state of the streaming endpoint.
    SystemData SystemDataResponse
    The system metadata relating to this resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    created String
    The exact time the streaming endpoint was created.
    freeTrialEndTime String
    The free trial expiration time.
    hostName String
    The streaming endpoint host name.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModified String
    The exact time the streaming endpoint was last modified.
    name String
    The name of the resource
    provisioningState String
    The provisioning state of the streaming endpoint.
    resourceState String
    The resource state of the streaming endpoint.
    systemData SystemDataResponse
    The system metadata relating to this resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    created string
    The exact time the streaming endpoint was created.
    freeTrialEndTime string
    The free trial expiration time.
    hostName string
    The streaming endpoint host name.
    id string
    The provider-assigned unique ID for this managed resource.
    lastModified string
    The exact time the streaming endpoint was last modified.
    name string
    The name of the resource
    provisioningState string
    The provisioning state of the streaming endpoint.
    resourceState string
    The resource state of the streaming endpoint.
    systemData SystemDataResponse
    The system metadata relating to this resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    created str
    The exact time the streaming endpoint was created.
    free_trial_end_time str
    The free trial expiration time.
    host_name str
    The streaming endpoint host name.
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified str
    The exact time the streaming endpoint was last modified.
    name str
    The name of the resource
    provisioning_state str
    The provisioning state of the streaming endpoint.
    resource_state str
    The resource state of the streaming endpoint.
    system_data SystemDataResponse
    The system metadata relating to this resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    created String
    The exact time the streaming endpoint was created.
    freeTrialEndTime String
    The free trial expiration time.
    hostName String
    The streaming endpoint host name.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModified String
    The exact time the streaming endpoint was last modified.
    name String
    The name of the resource
    provisioningState String
    The provisioning state of the streaming endpoint.
    resourceState String
    The resource state of the streaming endpoint.
    systemData Property Map
    The system metadata relating to this resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AkamaiAccessControl, AkamaiAccessControlArgs

    AkamaiAccessControlResponse, AkamaiAccessControlResponseArgs

    AkamaiSignatureHeaderAuthenticationKey, AkamaiSignatureHeaderAuthenticationKeyArgs

    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

    AkamaiSignatureHeaderAuthenticationKeyResponse, AkamaiSignatureHeaderAuthenticationKeyResponseArgs

    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

    ArmStreamingEndpointCurrentSku, ArmStreamingEndpointCurrentSkuArgs

    Capacity int
    The streaming endpoint sku capacity.
    Capacity int
    The streaming endpoint sku capacity.
    capacity Integer
    The streaming endpoint sku capacity.
    capacity number
    The streaming endpoint sku capacity.
    capacity int
    The streaming endpoint sku capacity.
    capacity Number
    The streaming endpoint sku capacity.

    ArmStreamingEndpointCurrentSkuResponse, ArmStreamingEndpointCurrentSkuResponseArgs

    Name string
    The streaming endpoint sku name.
    Capacity int
    The streaming endpoint sku capacity.
    Name string
    The streaming endpoint sku name.
    Capacity int
    The streaming endpoint sku capacity.
    name String
    The streaming endpoint sku name.
    capacity Integer
    The streaming endpoint sku capacity.
    name string
    The streaming endpoint sku name.
    capacity number
    The streaming endpoint sku capacity.
    name str
    The streaming endpoint sku name.
    capacity int
    The streaming endpoint sku capacity.
    name String
    The streaming endpoint sku name.
    capacity Number
    The streaming endpoint sku capacity.

    CrossSiteAccessPolicies, CrossSiteAccessPoliciesArgs

    ClientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    CrossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    ClientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    CrossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy String
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy String
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    client_access_policy str
    The content of clientaccesspolicy.xml used by Silverlight.
    cross_domain_policy str
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy String
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy String
    The content of crossdomain.xml used by Silverlight.

    CrossSiteAccessPoliciesResponse, CrossSiteAccessPoliciesResponseArgs

    ClientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    CrossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    ClientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    CrossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy String
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy String
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy string
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy string
    The content of crossdomain.xml used by Silverlight.
    client_access_policy str
    The content of clientaccesspolicy.xml used by Silverlight.
    cross_domain_policy str
    The content of crossdomain.xml used by Silverlight.
    clientAccessPolicy String
    The content of clientaccesspolicy.xml used by Silverlight.
    crossDomainPolicy String
    The content of crossdomain.xml used by Silverlight.

    IPAccessControl, IPAccessControlArgs

    Allow []IPRange
    The IP allow list.
    allow List<IPRange>
    The IP allow list.
    allow IPRange[]
    The IP allow list.
    allow Sequence[IPRange]
    The IP allow list.
    allow List<Property Map>
    The IP allow list.

    IPAccessControlResponse, IPAccessControlResponseArgs

    Allow []IPRangeResponse
    The IP allow list.
    allow List<IPRangeResponse>
    The IP allow list.
    allow IPRangeResponse[]
    The IP allow list.
    allow List<Property Map>
    The IP allow list.

    IPRange, IPRangeArgs

    Address string
    The IP address.
    Name string
    The friendly name for the IP address range.
    SubnetPrefixLength int
    The subnet mask prefix length (see CIDR notation).
    Address string
    The IP address.
    Name string
    The friendly name for the IP address range.
    SubnetPrefixLength int
    The subnet mask prefix length (see CIDR notation).
    address String
    The IP address.
    name String
    The friendly name for the IP address range.
    subnetPrefixLength Integer
    The subnet mask prefix length (see CIDR notation).
    address string
    The IP address.
    name string
    The friendly name for the IP address range.
    subnetPrefixLength number
    The subnet mask prefix length (see CIDR notation).
    address str
    The IP address.
    name str
    The friendly name for the IP address range.
    subnet_prefix_length int
    The subnet mask prefix length (see CIDR notation).
    address String
    The IP address.
    name String
    The friendly name for the IP address range.
    subnetPrefixLength Number
    The subnet mask prefix length (see CIDR notation).

    IPRangeResponse, IPRangeResponseArgs

    Address string
    The IP address.
    Name string
    The friendly name for the IP address range.
    SubnetPrefixLength int
    The subnet mask prefix length (see CIDR notation).
    Address string
    The IP address.
    Name string
    The friendly name for the IP address range.
    SubnetPrefixLength int
    The subnet mask prefix length (see CIDR notation).
    address String
    The IP address.
    name String
    The friendly name for the IP address range.
    subnetPrefixLength Integer
    The subnet mask prefix length (see CIDR notation).
    address string
    The IP address.
    name string
    The friendly name for the IP address range.
    subnetPrefixLength number
    The subnet mask prefix length (see CIDR notation).
    address str
    The IP address.
    name str
    The friendly name for the IP address range.
    subnet_prefix_length int
    The subnet mask prefix length (see CIDR notation).
    address String
    The IP address.
    name String
    The friendly name for the IP address range.
    subnetPrefixLength Number
    The subnet mask prefix length (see CIDR notation).

    StreamingEndpointAccessControl, StreamingEndpointAccessControlArgs

    Akamai Pulumi.AzureNative.Media.Inputs.AkamaiAccessControl
    The access control of Akamai
    Ip Pulumi.AzureNative.Media.Inputs.IPAccessControl
    The IP access control of the streaming endpoint.
    Akamai AkamaiAccessControl
    The access control of Akamai
    Ip IPAccessControl
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControl
    The access control of Akamai
    ip IPAccessControl
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControl
    The access control of Akamai
    ip IPAccessControl
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControl
    The access control of Akamai
    ip IPAccessControl
    The IP access control of the streaming endpoint.
    akamai Property Map
    The access control of Akamai
    ip Property Map
    The IP access control of the streaming endpoint.

    StreamingEndpointAccessControlResponse, StreamingEndpointAccessControlResponseArgs

    Akamai AkamaiAccessControlResponse
    The access control of Akamai
    Ip IPAccessControlResponse
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControlResponse
    The access control of Akamai
    ip IPAccessControlResponse
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControlResponse
    The access control of Akamai
    ip IPAccessControlResponse
    The IP access control of the streaming endpoint.
    akamai AkamaiAccessControlResponse
    The access control of Akamai
    ip IPAccessControlResponse
    The IP access control of the streaming endpoint.
    akamai Property Map
    The access control of Akamai
    ip Property Map
    The IP access control of the streaming endpoint.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:media:StreamingEndpoint myStreamingEndpoint1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/streamingEndpoints/{streamingEndpointName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi