azure-native.media.StreamingEndpoint
The streaming endpoint. API Version: 2020-05-01.
Example Usage
Create a streaming endpoint
using System.Collections.Generic;
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 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",
})
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
new StreamingEndpoint(name: string, args: StreamingEndpointArgs, opts?: CustomResourceOptions);
@overload
def StreamingEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_control: Optional[StreamingEndpointAccessControlArgs] = None,
account_name: Optional[str] = None,
auto_start: Optional[bool] = None,
availability_set_name: Optional[str] = None,
cdn_enabled: Optional[bool] = 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,
resource_group_name: Optional[str] = None,
scale_units: Optional[int] = None,
streaming_endpoint_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def StreamingEndpoint(resource_name: str,
args: StreamingEndpointArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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:
- Account
Name string The Media Services account name.
- Resource
Group stringName 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 Pulumi.Azure Native. Media. Inputs. Streaming Endpoint 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 stringName This feature is deprecated, do not set a value for this property.
- Cdn
Enabled bool The CDN enabled flag.
- Cdn
Profile string The CDN profile name.
- Cdn
Provider string The CDN provider name.
- Cross
Site Pulumi.Access Policies Azure Native. Media. Inputs. Cross Site Access Policies Args The streaming endpoint access policies.
- Custom
Host 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
- Max
Cache doubleAge Max cache age
- Streaming
Endpoint stringName The name of the streaming endpoint, maximum length is 24.
- Dictionary<string, string>
Resource tags.
- Account
Name string The Media Services account name.
- Resource
Group stringName 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 stringName This feature is deprecated, do not set a value for this property.
- Cdn
Enabled bool The CDN enabled flag.
- Cdn
Profile string The CDN profile name.
- Cdn
Provider string The CDN provider name.
- Cross
Site CrossAccess Policies Site Access Policies Args The streaming endpoint access policies.
- Custom
Host []stringNames The custom host names of the streaming endpoint
- Description string
The streaming endpoint description.
- Location string
The geo-location where the resource lives
- Max
Cache float64Age Max cache age
- Streaming
Endpoint stringName The name of the streaming endpoint, maximum length is 24.
- map[string]string
Resource tags.
- account
Name String The Media Services account name.
- resource
Group StringName The name of the resource group within the Azure subscription.
- scale
Units Integer 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 Boolean The flag indicates if the resource should be automatically started on creation.
- availability
Set StringName This feature is deprecated, do not set a value for this property.
- cdn
Enabled Boolean The CDN enabled flag.
- cdn
Profile String The CDN profile name.
- cdn
Provider String The CDN provider name.
- cross
Site CrossAccess Policies Site Access Policies Args The streaming endpoint access policies.
- custom
Host 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
- max
Cache DoubleAge Max cache age
- streaming
Endpoint StringName The name of the streaming endpoint, maximum length is 24.
- Map<String,String>
Resource tags.
- account
Name string The Media Services account name.
- resource
Group stringName The name of the resource group within the Azure subscription.
- scale
Units number 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 boolean The flag indicates if the resource should be automatically started on creation.
- availability
Set stringName This feature is deprecated, do not set a value for this property.
- cdn
Enabled boolean The CDN enabled flag.
- cdn
Profile string The CDN profile name.
- cdn
Provider string The CDN provider name.
- cross
Site CrossAccess Policies Site Access Policies Args The streaming endpoint access policies.
- custom
Host 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
- max
Cache numberAge Max cache age
- streaming
Endpoint 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.
- account
Name String The Media Services account name.
- resource
Group StringName The name of the resource group within the Azure subscription.
- scale
Units Number The number of scale units. Use the Scale operation to adjust this value.
- access
Control Property Map The access control definition of the streaming endpoint.
- auto
Start Boolean The flag indicates if the resource should be automatically started on creation.
- availability
Set StringName This feature is deprecated, do not set a value for this property.
- cdn
Enabled Boolean The CDN enabled flag.
- cdn
Profile String The CDN profile name.
- cdn
Provider String The CDN provider name.
- cross
Site Property MapAccess Policies The streaming endpoint access policies.
- custom
Host 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
- max
Cache NumberAge Max cache age
- streaming
Endpoint 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.
- Free
Trial stringEnd Time The free trial expiration time.
- Host
Name string The streaming endpoint host name.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified string The exact time the streaming endpoint was last modified.
- Name string
The name of the resource
- Provisioning
State string The provisioning state of the streaming endpoint.
- Resource
State string The resource state of the streaming endpoint.
- System
Data 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.
- Free
Trial stringEnd Time The free trial expiration time.
- Host
Name string The streaming endpoint host name.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified string The exact time the streaming endpoint was last modified.
- Name string
The name of the resource
- Provisioning
State string The provisioning state of the streaming endpoint.
- Resource
State string The resource state of the streaming endpoint.
- System
Data 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.
- free
Trial StringEnd Time The free trial expiration time.
- host
Name String The streaming endpoint host name.
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified String The exact time the streaming endpoint was last modified.
- name String
The name of the resource
- provisioning
State String The provisioning state of the streaming endpoint.
- resource
State String The resource state of the streaming endpoint.
- system
Data 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.
- free
Trial stringEnd Time The free trial expiration time.
- host
Name string The streaming endpoint host name.
- id string
The provider-assigned unique ID for this managed resource.
- last
Modified string The exact time the streaming endpoint was last modified.
- name string
The name of the resource
- provisioning
State string The provisioning state of the streaming endpoint.
- resource
State string The resource state of the streaming endpoint.
- system
Data 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.
- free
Trial StringEnd Time The free trial expiration time.
- host
Name String The streaming endpoint host name.
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified String The exact time the streaming endpoint was last modified.
- name String
The name of the resource
- provisioning
State String The provisioning state of the streaming endpoint.
- resource
State String The resource state of the streaming endpoint.
- system
Data 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
- Akamai
Signature []AkamaiHeader Authentication Key List Signature Header Authentication Key authentication key list
- akamai
Signature List<AkamaiHeader Authentication Key List Signature Header Authentication Key> authentication key list
- akamai
Signature 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
- akamai
Signature List<Property Map>Header Authentication Key List authentication key list
AkamaiAccessControlResponse
- Akamai
Signature []AkamaiHeader Authentication Key List Signature Header Authentication Key Response authentication key list
- akamai
Signature List<AkamaiHeader Authentication Key List Signature Header Authentication Key Response> authentication key list
- akamai
Signature AkamaiHeader Authentication Key List Signature Header Authentication Key Response[] authentication key list
- akamai
Signature List<Property Map>Header Authentication Key List authentication key list
AkamaiSignatureHeaderAuthenticationKey
- 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
- 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
- Client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- Client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy The content of crossdomain.xml used by Silverlight.
- client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- client_
access_ strpolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross_
domain_ strpolicy The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy The content of crossdomain.xml used by Silverlight.
CrossSiteAccessPoliciesResponse
- Client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- Client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- Cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy The content of crossdomain.xml used by Silverlight.
- client
Access stringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain stringPolicy The content of crossdomain.xml used by Silverlight.
- client_
access_ strpolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross_
domain_ strpolicy The content of crossdomain.xml used by Silverlight.
- client
Access StringPolicy The content of clientaccesspolicy.xml used by Silverlight.
- cross
Domain StringPolicy The content of crossdomain.xml used by Silverlight.
IPAccessControl
- 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
- Allow
List<Pulumi.
Azure Native. Media. Inputs. IPRange Response> The IP allow list.
- Allow
[]IPRange
Response The IP allow list.
- allow
List<IPRange
Response> The IP allow list.
- allow
IPRange
Response[] The IP allow list.
- allow
Sequence[IPRange
Response] The IP allow list.
- allow List<Property Map>
The IP allow list.
IPRange
- Address string
The IP address.
- Name string
The friendly name for the IP address range.
- Subnet
Prefix intLength The subnet mask prefix length (see CIDR notation).
- Address string
The IP address.
- Name string
The friendly name for the IP address range.
- Subnet
Prefix intLength The subnet mask prefix length (see CIDR notation).
- address String
The IP address.
- name String
The friendly name for the IP address range.
- subnet
Prefix IntegerLength The subnet mask prefix length (see CIDR notation).
- address string
The IP address.
- name string
The friendly name for the IP address range.
- subnet
Prefix numberLength The subnet mask prefix length (see CIDR notation).
- address str
The IP address.
- 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.
- subnet
Prefix NumberLength The subnet mask prefix length (see CIDR notation).
IPRangeResponse
- Address string
The IP address.
- Name string
The friendly name for the IP address range.
- Subnet
Prefix intLength The subnet mask prefix length (see CIDR notation).
- Address string
The IP address.
- Name string
The friendly name for the IP address range.
- Subnet
Prefix intLength The subnet mask prefix length (see CIDR notation).
- address String
The IP address.
- name String
The friendly name for the IP address range.
- subnet
Prefix IntegerLength The subnet mask prefix length (see CIDR notation).
- address string
The IP address.
- name string
The friendly name for the IP address range.
- subnet
Prefix numberLength The subnet mask prefix length (see CIDR notation).
- address str
The IP address.
- 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.
- subnet
Prefix NumberLength The subnet mask prefix length (see CIDR notation).
StreamingEndpointAccessControl
- 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
Akamai
Access Control The access control of Akamai
- Ip
IPAccess
Control The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control The access control of Akamai
- ip
IPAccess
Control The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control The access control of Akamai
- ip
IPAccess
Control The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control The access control of Akamai
- ip
IPAccess
Control 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
- 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
Akamai
Access Control Response The access control of Akamai
- Ip
IPAccess
Control Response The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control Response The access control of Akamai
- ip
IPAccess
Control Response The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control Response The access control of Akamai
- ip
IPAccess
Control Response The IP access control of the streaming endpoint.
- akamai
Akamai
Access Control Response The access control of Akamai
- ip
IPAccess
Control 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
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
- created
At string The timestamp of resource creation (UTC).
- created
By string The identity that created the resource.
- created
By stringType The type of identity that created the resource.
- last
Modified stringAt The timestamp of resource last modification (UTC)
- last
Modified stringBy The identity that last modified the resource.
- last
Modified 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.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified 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
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0