azure-native.media.StreamingEndpoint
Explore with Pulumi AI
The streaming endpoint. API Version: 2020-05-01.
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" },
        },
    });
});
Coming soon!
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 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(Map.ofEntries(
                Map.entry("akamai", Map.of("akamaiSignatureHeaderAuthenticationKeyList",                 
                    Map.ofEntries(
                        Map.entry("base64Key", "dGVzdGlkMQ=="),
                        Map.entry("expiration", "2029-12-31T16:00:00-08:00"),
                        Map.entry("identifier", "id1")
                    ),
                    Map.ofEntries(
                        Map.entry("base64Key", "dGVzdGlkMQ=="),
                        Map.entry("expiration", "2030-12-31T16:00:00-08:00"),
                        Map.entry("identifier", "id2")
                    ))),
                Map.entry("ip", Map.of("allow", Map.ofEntries(
                    Map.entry("address", "192.168.1.1"),
                    Map.entry("name", "AllowedIp")
                )))
            ))
            .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 * 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",
    },
});
import pulumi
import pulumi_azure_native as azure_native
streaming_endpoint = azure_native.media.StreamingEndpoint("streamingEndpoint",
    access_control=azure_native.media.StreamingEndpointAccessControlResponseArgs(
        akamai={
            "akamaiSignatureHeaderAuthenticationKeyList": [
                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={
            "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",
    })
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,
                      access_control: Optional[StreamingEndpointAccessControlArgs] = 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,
                      location: Optional[str] = None,
                      max_cache_age: Optional[float] = None,
                      availability_set_name: Optional[str] = None,
                      auto_start: Optional[bool] = 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.
Constructor 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,
    AccessControl = 
    {
        { "akamai", 
        {
            { "akamaiSignatureHeaderAuthenticationKeyList", new[]
            {
                
                {
                    { "base64Key", "string" },
                    { "expiration", "string" },
                    { "identifier", "string" },
                },
            } },
        } },
        { "ip", 
        {
            { "allow", new[]
            {
                
                {
                    { "address", "string" },
                    { "name", "string" },
                    { "subnetPrefixLength", 0 },
                },
            } },
        } },
    },
    CdnProfile = "string",
    CdnProvider = "string",
    CrossSiteAccessPolicies = 
    {
        { "clientAccessPolicy", "string" },
        { "crossDomainPolicy", "string" },
    },
    CustomHostNames = new[]
    {
        "string",
    },
    Description = "string",
    Location = "string",
    MaxCacheAge = 0,
    AvailabilitySetName = "string",
    AutoStart = false,
    StreamingEndpointName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := media.NewStreamingEndpoint(ctx, "streamingEndpointResource", &media.StreamingEndpointArgs{
	ResourceGroupName: "string",
	AccountName:       "string",
	ScaleUnits:        0,
	CdnEnabled:        false,
	AccessControl: map[string]interface{}{
		"akamai": map[string]interface{}{
			"akamaiSignatureHeaderAuthenticationKeyList": []map[string]interface{}{
				map[string]interface{}{
					"base64Key":  "string",
					"expiration": "string",
					"identifier": "string",
				},
			},
		},
		"ip": map[string]interface{}{
			"allow": []map[string]interface{}{
				map[string]interface{}{
					"address":            "string",
					"name":               "string",
					"subnetPrefixLength": 0,
				},
			},
		},
	},
	CdnProfile:  "string",
	CdnProvider: "string",
	CrossSiteAccessPolicies: map[string]interface{}{
		"clientAccessPolicy": "string",
		"crossDomainPolicy":  "string",
	},
	CustomHostNames: []string{
		"string",
	},
	Description:           "string",
	Location:              "string",
	MaxCacheAge:           0,
	AvailabilitySetName:   "string",
	AutoStart:             false,
	StreamingEndpointName: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var streamingEndpointResource = new StreamingEndpoint("streamingEndpointResource", StreamingEndpointArgs.builder()
    .resourceGroupName("string")
    .accountName("string")
    .scaleUnits(0)
    .cdnEnabled(false)
    .accessControl(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .cdnProfile("string")
    .cdnProvider("string")
    .crossSiteAccessPolicies(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .customHostNames("string")
    .description("string")
    .location("string")
    .maxCacheAge(0)
    .availabilitySetName("string")
    .autoStart(false)
    .streamingEndpointName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
streaming_endpoint_resource = azure_native.media.StreamingEndpoint("streamingEndpointResource",
    resource_group_name=string,
    account_name=string,
    scale_units=0,
    cdn_enabled=False,
    access_control={
        akamai: {
            akamaiSignatureHeaderAuthenticationKeyList: [{
                base64Key: string,
                expiration: string,
                identifier: string,
            }],
        },
        ip: {
            allow: [{
                address: string,
                name: string,
                subnetPrefixLength: 0,
            }],
        },
    },
    cdn_profile=string,
    cdn_provider=string,
    cross_site_access_policies={
        clientAccessPolicy: string,
        crossDomainPolicy: string,
    },
    custom_host_names=[string],
    description=string,
    location=string,
    max_cache_age=0,
    availability_set_name=string,
    auto_start=False,
    streaming_endpoint_name=string,
    tags={
        string: string,
    })
const streamingEndpointResource = new azure_native.media.StreamingEndpoint("streamingEndpointResource", {
    resourceGroupName: "string",
    accountName: "string",
    scaleUnits: 0,
    cdnEnabled: false,
    accessControl: {
        akamai: {
            akamaiSignatureHeaderAuthenticationKeyList: [{
                base64Key: "string",
                expiration: "string",
                identifier: "string",
            }],
        },
        ip: {
            allow: [{
                address: "string",
                name: "string",
                subnetPrefixLength: 0,
            }],
        },
    },
    cdnProfile: "string",
    cdnProvider: "string",
    crossSiteAccessPolicies: {
        clientAccessPolicy: "string",
        crossDomainPolicy: "string",
    },
    customHostNames: ["string"],
    description: "string",
    location: "string",
    maxCacheAge: 0,
    availabilitySetName: "string",
    autoStart: false,
    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
    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
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:
- AccountName string
- The Media Services account name.
- ResourceGroup stringName 
- 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.Azure Native. Media. Inputs. Streaming Endpoint Access Control 
- The access control definition of the streaming endpoint.
- AutoStart bool
- The flag indicates if the resource should be automatically started on creation.
- AvailabilitySet stringName 
- 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.
- CrossSite Pulumi.Access Policies Azure Native. Media. Inputs. Cross Site Access Policies 
- The streaming endpoint access policies.
- CustomHost List<string>Names 
- The custom host names of the streaming endpoint
- Description string
- The streaming endpoint description.
- Location string
- The geo-location where the resource lives
- MaxCache doubleAge 
- Max cache age
- StreamingEndpoint stringName 
- The name of the streaming endpoint, maximum length is 24.
- Dictionary<string, string>
- Resource tags.
- AccountName string
- The Media Services account name.
- ResourceGroup stringName 
- 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 StreamingEndpoint Access Control Args 
- The access control definition of the streaming endpoint.
- AutoStart bool
- The flag indicates if the resource should be automatically started on creation.
- AvailabilitySet stringName 
- 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.
- CrossSite CrossAccess Policies Site Access Policies Args 
- The streaming endpoint access policies.
- CustomHost []stringNames 
- The custom host names of the streaming endpoint
- Description string
- The streaming endpoint description.
- Location string
- The geo-location where the resource lives
- MaxCache float64Age 
- Max cache age
- StreamingEndpoint stringName 
- The name of the streaming endpoint, maximum length is 24.
- map[string]string
- Resource tags.
- accountName String
- The Media Services account name.
- resourceGroup StringName 
- 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 StreamingEndpoint Access Control 
- The access control definition of the streaming endpoint.
- autoStart Boolean
- The flag indicates if the resource should be automatically started on creation.
- availabilitySet StringName 
- 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.
- crossSite CrossAccess Policies Site Access Policies 
- The streaming endpoint access policies.
- customHost List<String>Names 
- The custom host names of the streaming endpoint
- description String
- The streaming endpoint description.
- location String
- The geo-location where the resource lives
- maxCache DoubleAge 
- Max cache age
- streamingEndpoint StringName 
- The name of the streaming endpoint, maximum length is 24.
- Map<String,String>
- Resource tags.
- accountName string
- The Media Services account name.
- resourceGroup stringName 
- 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 StreamingEndpoint Access Control 
- The access control definition of the streaming endpoint.
- autoStart boolean
- The flag indicates if the resource should be automatically started on creation.
- availabilitySet stringName 
- 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.
- crossSite CrossAccess Policies Site Access Policies 
- The streaming endpoint access policies.
- customHost string[]Names 
- The custom host names of the streaming endpoint
- description string
- The streaming endpoint description.
- location string
- The geo-location where the resource lives
- maxCache numberAge 
- Max cache age
- streamingEndpoint stringName 
- The name of the streaming endpoint, maximum length is 24.
- {[key: string]: string}
- Resource tags.
- account_name str
- The Media Services account name.
- resource_group_ strname 
- 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 StreamingEndpoint Access Control Args 
- 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_ strname 
- 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_ Crossaccess_ policies Site Access Policies Args 
- The streaming endpoint access policies.
- custom_host_ Sequence[str]names 
- 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_ floatage 
- Max cache age
- streaming_endpoint_ strname 
- The name of the streaming endpoint, maximum length is 24.
- Mapping[str, str]
- Resource tags.
- accountName String
- The Media Services account name.
- resourceGroup StringName 
- 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.
- availabilitySet StringName 
- 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.
- crossSite Property MapAccess Policies 
- The streaming endpoint access policies.
- customHost List<String>Names 
- The custom host names of the streaming endpoint
- description String
- The streaming endpoint description.
- location String
- The geo-location where the resource lives
- maxCache NumberAge 
- Max cache age
- streamingEndpoint StringName 
- The name of the streaming endpoint, maximum length is 24.
- 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.
- FreeTrial stringEnd Time 
- 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.Azure Native. Media. Outputs. System Data Response 
- 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.
- FreeTrial stringEnd Time 
- 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 SystemData Response 
- 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.
- freeTrial StringEnd Time 
- 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 SystemData Response 
- 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.
- freeTrial stringEnd Time 
- 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 SystemData Response 
- 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_ strend_ time 
- 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 SystemData Response 
- 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.
- freeTrial StringEnd Time 
- 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      
- AkamaiSignature []AkamaiHeader Authentication Key List Signature Header Authentication Key 
- authentication key list
- akamaiSignature List<AkamaiHeader Authentication Key List Signature Header Authentication Key> 
- authentication key list
- akamaiSignature AkamaiHeader Authentication Key List Signature Header Authentication Key[] 
- authentication key list
- akamai_signature_ Sequence[Akamaiheader_ authentication_ key_ list Signature Header Authentication Key] 
- authentication key list
- akamaiSignature List<Property Map>Header Authentication Key List 
- authentication key list
AkamaiAccessControlResponse, AkamaiAccessControlResponseArgs        
- AkamaiSignature []AkamaiHeader Authentication Key List Signature Header Authentication Key Response 
- authentication key list
- akamaiSignature List<AkamaiHeader Authentication Key List Signature Header Authentication Key Response> 
- authentication key list
- akamaiSignature AkamaiHeader Authentication Key List Signature Header Authentication Key Response[] 
- authentication key list
- akamaiSignature List<Property Map>Header Authentication Key List 
- authentication key list
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
CrossSiteAccessPolicies, CrossSiteAccessPoliciesArgs        
- ClientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- CrossDomain stringPolicy 
- The content of crossdomain.xml used by Silverlight.
- ClientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- CrossDomain stringPolicy 
- The content of crossdomain.xml used by Silverlight.
- clientAccess StringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain StringPolicy 
- The content of crossdomain.xml used by Silverlight.
- clientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain 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.
- clientAccess StringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain StringPolicy 
- The content of crossdomain.xml used by Silverlight.
CrossSiteAccessPoliciesResponse, CrossSiteAccessPoliciesResponseArgs          
- ClientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- CrossDomain stringPolicy 
- The content of crossdomain.xml used by Silverlight.
- ClientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- CrossDomain stringPolicy 
- The content of crossdomain.xml used by Silverlight.
- clientAccess StringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain StringPolicy 
- The content of crossdomain.xml used by Silverlight.
- clientAccess stringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain 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.
- clientAccess StringPolicy 
- The content of clientaccesspolicy.xml used by Silverlight.
- crossDomain StringPolicy 
- The content of crossdomain.xml used by Silverlight.
IPAccessControl, IPAccessControlArgs    
- Allow
List<Pulumi.Azure Native. Media. Inputs. IPRange> 
- The IP allow list.
- allow List<IPRange>
- The IP allow list.
- allow Sequence[IPRange]
- The IP allow list.
- allow List<Property Map>
- The IP allow list.
IPAccessControlResponse, IPAccessControlResponseArgs      
- Allow
List<Pulumi.Azure Native. Media. Inputs. IPRange Response> 
- The IP allow list.
- Allow
[]IPRangeResponse 
- The IP allow list.
- allow
List<IPRangeResponse> 
- The IP allow list.
- allow
IPRangeResponse[] 
- The IP allow list.
- allow
Sequence[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.
- SubnetPrefix intLength 
- The subnet mask prefix length (see CIDR notation).
- Address string
- The IP address.
- Name string
- The friendly name for the IP address range.
- SubnetPrefix intLength 
- The subnet mask prefix length (see CIDR notation).
- address String
- The IP address.
- name String
- The friendly name for the IP address range.
- subnetPrefix IntegerLength 
- The subnet mask prefix length (see CIDR notation).
- address string
- The IP address.
- name string
- The friendly name for the IP address range.
- subnetPrefix numberLength 
- 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_ intlength 
- The subnet mask prefix length (see CIDR notation).
- address String
- The IP address.
- name String
- The friendly name for the IP address range.
- subnetPrefix NumberLength 
- 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.
- SubnetPrefix intLength 
- The subnet mask prefix length (see CIDR notation).
- Address string
- The IP address.
- Name string
- The friendly name for the IP address range.
- SubnetPrefix intLength 
- The subnet mask prefix length (see CIDR notation).
- address String
- The IP address.
- name String
- The friendly name for the IP address range.
- subnetPrefix IntegerLength 
- The subnet mask prefix length (see CIDR notation).
- address string
- The IP address.
- name string
- The friendly name for the IP address range.
- subnetPrefix numberLength 
- 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_ intlength 
- The subnet mask prefix length (see CIDR notation).
- address String
- The IP address.
- name String
- The friendly name for the IP address range.
- subnetPrefix NumberLength 
- The subnet mask prefix length (see CIDR notation).
StreamingEndpointAccessControl, StreamingEndpointAccessControlArgs        
- Akamai
Pulumi.Azure Native. Media. Inputs. Akamai Access Control 
- The access control of Akamai
- Ip
Pulumi.Azure Native. Media. Inputs. IPAccess Control 
- The IP access control of the streaming endpoint.
- Akamai
AkamaiAccess Control 
- The access control of Akamai
- Ip
IPAccessControl 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control 
- The access control of Akamai
- ip
IPAccessControl 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control 
- The access control of Akamai
- ip
IPAccessControl 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control 
- 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
Pulumi.Azure Native. Media. Inputs. Akamai Access Control Response 
- The access control of Akamai
- Ip
Pulumi.Azure Native. Media. Inputs. IPAccess Control Response 
- The IP access control of the streaming endpoint.
- Akamai
AkamaiAccess Control Response 
- The access control of Akamai
- Ip
IPAccessControl Response 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control Response 
- The access control of Akamai
- ip
IPAccessControl Response 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control Response 
- The access control of Akamai
- ip
IPAccessControl Response 
- The IP access control of the streaming endpoint.
- akamai
AkamaiAccess Control Response 
- The access control of Akamai
- ip
IPAccessControl Response 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingendpoints/myStreamingEndpoint1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0