Streaming Policies - Create
Media Services アカウントでストリーミング ポリシーを作成する
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaServices/{accountName}/streamingPolicies/{streamingPolicyName}?api-version=2022-08-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
account
|
path | True |
string |
Media Services アカウント名。 |
resource
|
path | True |
string |
Azure サブスクリプション内のリソース グループの名前。 |
streaming
|
path | True |
string |
ストリーミング ポリシー名。 |
subscription
|
path | True |
string |
Microsoft Azure サブスクリプションの一意識別子。 |
api-version
|
query | True |
string |
クライアント要求で使用される API のバージョン。 |
要求本文
名前 | 型 | 説明 |
---|---|---|
properties.commonEncryptionCbcs |
CommonEncryptionCbcs の構成 |
|
properties.commonEncryptionCenc |
CommonEncryptionCenc の構成 |
|
properties.defaultContentKeyPolicyName |
string |
現在のストリーミング ポリシーによって使用される既定の ContentKey |
properties.envelopeEncryption |
EnvelopeEncryption の構成 |
|
properties.noEncryption |
NoEncryption の構成 |
応答
名前 | 型 | 説明 |
---|---|---|
201 Created |
作成済み |
|
Other Status Codes |
詳細なエラー情報。 |
例
Creates a Streaming Policy with clear streaming
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/clearStreamingPolicy?api-version=2022-08-01
{
"properties": {
"noEncryption": {
"enabledProtocols": {
"download": true,
"dash": true,
"hls": true,
"smoothStreaming": true
}
}
}
}
応答のサンプル
{
"name": "clearStreamingPolicy",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/clearStreamingPolicy",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.1535417Z",
"noEncryption": {
"enabledProtocols": {
"download": true,
"dash": true,
"hls": true,
"smoothStreaming": true
}
}
}
}
Creates a Streaming Policy with ClearKey encryption in commonEncryptionCbcs.
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
}
},
"clearKeyEncryptionConfiguration": {
"customKeysAcquisitionUrlTemplate": "https://contoso.com/{AlternativeMediaId}/clearkey/"
}
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.6197199Z",
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"clearTracks": [],
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
},
"keyToTrackMappings": []
},
"clearKeyEncryptionConfiguration": {
"customKeysAcquisitionUrlTemplate": "https://contoso.com/{AlternativeMediaId}/clearkey/"
}
}
}
}
Creates a Streaming Policy with ClearKey encryption in commonEncryptionCenc.
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithPlayReadyOptionAndOpenRestriction",
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
}
},
"clearKeyEncryptionConfiguration": {
"customKeysAcquisitionUrlTemplate": "https://contoso.com/{AlternativeMediaId}/clearkey/"
}
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.4678543Z",
"defaultContentKeyPolicyName": "PolicyWithPlayReadyOptionAndOpenRestriction",
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
},
"keyToTrackMappings": []
},
"clearKeyEncryptionConfiguration": {
"customKeysAcquisitionUrlTemplate": "https://contoso.com/{AlternativeMediaId}/clearkey/"
}
}
}
}
Creates a Streaming Policy with commonEncryptionCbcs only
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
}
},
"drm": {
"fairPlay": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/fairplay/{ContentKeyId}",
"allowPersistentLicense": true
}
}
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCbcsOnly",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.6197199Z",
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"clearTracks": [],
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
},
"keyToTrackMappings": []
},
"drm": {
"fairPlay": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/fairplay/{ContentKeyId}",
"allowPersistentLicense": true
}
}
}
}
}
Creates a Streaming Policy with commonEncryptionCenc only
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithPlayReadyOptionAndOpenRestriction",
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
}
},
"drm": {
"playReady": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/playready/{ContentKeyId}",
"playReadyCustomAttributes": "PlayReady CustomAttributes"
},
"widevine": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/widevine/{ContentKeyId"
}
}
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithCommonEncryptionCencOnly",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.4678543Z",
"defaultContentKeyPolicyName": "PolicyWithPlayReadyOptionAndOpenRestriction",
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
},
"keyToTrackMappings": []
},
"drm": {
"playReady": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/playready/{ContentKeyId}",
"playReadyCustomAttributes": "PlayReady CustomAttributes"
},
"widevine": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/widevine/{ContentKeyId}"
}
}
}
}
}
Creates a Streaming Policy with envelopeEncryption only
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithEnvelopeEncryptionOnly?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithClearKeyOptionAndTokenRestriction",
"envelopeEncryption": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": true,
"smoothStreaming": true
},
"contentKeys": {
"defaultKey": {
"label": "aesDefaultKey"
}
},
"customKeyAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/envelope/{ContentKeyId}"
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicyWithEnvelopeEncryptionOnly",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicyWithEnvelopeEncryptionOnly",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.3055712Z",
"defaultContentKeyPolicyName": "PolicyWithClearKeyOptionAndTokenRestriction",
"envelopeEncryption": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": true,
"smoothStreaming": true
},
"clearTracks": [],
"contentKeys": {
"defaultKey": {
"label": "aesDefaultKey"
},
"keyToTrackMappings": []
},
"customKeyAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/envelope/{ContentKeyId}"
}
}
}
Creates a Streaming Policy with secure streaming
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicy?api-version=2022-08-01
{
"properties": {
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"envelopeEncryption": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": true,
"smoothStreaming": true
},
"contentKeys": {
"defaultKey": {
"label": "aesDefaultKey"
}
},
"customKeyAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/envelope/{ContentKeyId}"
},
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
}
},
"drm": {
"playReady": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/playready/{ContentKeyId}",
"playReadyCustomAttributes": "PlayReady CustomAttributes"
},
"widevine": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/widevine/{ContentKeyId"
}
}
},
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
}
},
"drm": {
"fairPlay": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/fairplay/{ContentKeyId}",
"allowPersistentLicense": true
}
}
}
}
}
応答のサンプル
{
"name": "UserCreatedSecureStreamingPolicy",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaservices/contosomedia/streamingPolicies/UserCreatedSecureStreamingPolicy",
"type": "Microsoft.Media/mediaservices/streamingPolicies",
"properties": {
"created": "2018-08-08T18:29:31.7715696Z",
"defaultContentKeyPolicyName": "PolicyWithMultipleOptions",
"envelopeEncryption": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": true,
"smoothStreaming": true
},
"clearTracks": [],
"contentKeys": {
"defaultKey": {
"label": "aesDefaultKey"
},
"keyToTrackMappings": []
},
"customKeyAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/envelope/{ContentKeyId}"
},
"commonEncryptionCenc": {
"enabledProtocols": {
"download": false,
"dash": true,
"hls": false,
"smoothStreaming": true
},
"clearTracks": [
{
"trackSelections": [
{
"property": "FourCC",
"operation": "Equal",
"value": "hev1"
}
]
}
],
"contentKeys": {
"defaultKey": {
"label": "cencDefaultKey"
},
"keyToTrackMappings": []
},
"drm": {
"playReady": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/playready/{ContentKeyId}",
"playReadyCustomAttributes": "PlayReady CustomAttributes"
},
"widevine": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/widevine/{ContentKeyId"
}
}
},
"commonEncryptionCbcs": {
"enabledProtocols": {
"download": false,
"dash": false,
"hls": true,
"smoothStreaming": false
},
"clearTracks": [],
"contentKeys": {
"defaultKey": {
"label": "cbcsDefaultKey"
},
"keyToTrackMappings": []
},
"drm": {
"fairPlay": {
"customLicenseAcquisitionUrlTemplate": "https://contoso.com/{AssetAlternativeId}/fairplay/{ContentKeyId}",
"allowPersistentLicense": true
}
}
}
}
}
定義
名前 | 説明 |
---|---|
Cbcs |
ストリーミング ポリシーで CommonEncryptionCbcs スキームの DRM 構成を指定するクラス |
Cenc |
ストリーミング ポリシーで CommonEncryptionCenc スキームの DRM 構成を指定するクラス |
Clear |
ストリーミング ポリシーで一般的な暗号化スキームの ClearKey 構成を指定するクラス |
Common |
CommonEncryptionCbcs 暗号化スキームのクラス |
Common |
エンベロープ暗号化スキームのクラス |
created |
リソースを作成した ID の種類。 |
Default |
各暗号化スキームの既定のコンテンツ キーのプロパティを指定するクラス |
Enabled |
有効にするプロトコルを指定するクラス |
Envelope |
EnvelopeEncryption 暗号化スキームのクラス |
Error |
リソース管理エラーの追加情報。 |
Error |
エラーの詳細。 |
Error |
エラー応答 |
No |
NoEncryption スキームのクラス |
Streaming |
ストリーミング ポリシー リソース |
Streaming |
コンテンツ キーのプロパティを指定するクラス |
Streaming |
ストリーミング ポリシー内のすべてのコンテンツ キーのプロパティを指定するクラス |
Streaming |
ストリーミング ポリシーで FairPlay の構成を指定するクラス |
Streaming |
ストリーミング ポリシーで PlayReady の構成を指定するクラス |
Streaming |
ストリーミング ポリシーで Widevine の構成を指定するクラス |
system |
リソースの作成と最後の変更に関連するメタデータ。 |
Track |
プロパティ条件の操作を追跡する |
Track |
1 つのトラック プロパティ条件を指定するクラス |
Track |
プロパティの種類を追跡する |
Track |
トラックを選択するクラス |
CbcsDrmConfiguration
ストリーミング ポリシーで CommonEncryptionCbcs スキームの DRM 構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
fairPlay |
FairPlay の構成 |
|
playReady |
PlayReady の構成 |
|
widevine |
Widevine の構成 |
CencDrmConfiguration
ストリーミング ポリシーで CommonEncryptionCenc スキームの DRM 構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
playReady |
PlayReady の構成 |
|
widevine |
Widevine の構成 |
ClearKeyEncryptionConfiguration
ストリーミング ポリシーで一般的な暗号化スキームの ClearKey 構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
customKeysAcquisitionUrlTemplate |
string |
エンド ユーザー プレーヤーにコンテンツ キーを配信するカスタム サービスの URL のテンプレート。 ライセンスの発行に Azure Media Services を使用するときは必要ありません。 このテンプレートでは、置換できるトークンがサポートされ、実行時にサービスによって要求固有の値に更新されます。 現在サポートされているトークン値は {AlternativeMediaId} で、StreamingLocatorId.AlternativeMediaId の値に置き換えられます。 |
CommonEncryptionCbcs
CommonEncryptionCbcs 暗号化スキームのクラス
名前 | 型 | 説明 |
---|---|---|
clearKeyEncryptionConfiguration |
CommonEncryptionCbcs 暗号化スキームで ClearKey をサポートするオプションの構成。 |
|
clearTracks |
暗号化すべきではないトラックを表す |
|
contentKeys |
各暗号化スキームの既定のコンテンツ キーと、特定のトラック用の個別のコンテンツ キーを表す |
|
drm |
現在の暗号化スキームの DRM の構成 |
|
enabledProtocols |
サポートされているプロトコルの表し方 |
CommonEncryptionCenc
エンベロープ暗号化スキームのクラス
名前 | 型 | 説明 |
---|---|---|
clearKeyEncryptionConfiguration |
CommonEncryptionCenc 暗号化スキームで ClearKey をサポートするオプションの構成。 |
|
clearTracks |
暗号化すべきではないトラックを表す |
|
contentKeys |
各暗号化スキームの既定のコンテンツ キーと、特定のトラック用の個別のコンテンツ キーを表す |
|
drm |
CommonEncryptionCenc 暗号化スキームの DRM の構成 |
|
enabledProtocols |
サポートされているプロトコルの表し方 |
createdByType
リソースを作成した ID の種類。
名前 | 型 | 説明 |
---|---|---|
Application |
string |
|
Key |
string |
|
ManagedIdentity |
string |
|
User |
string |
DefaultKey
各暗号化スキームの既定のコンテンツ キーのプロパティを指定するクラス
名前 | 型 | 説明 |
---|---|---|
label |
string |
ストリーミング ロケーターを作成するときに、ラベルを使用してコンテンツ キーを指定できます |
policyName |
string |
既定のキーで使用されるポリシー |
EnabledProtocols
有効にするプロトコルを指定するクラス
名前 | 型 | 説明 |
---|---|---|
dash |
boolean |
DASH プロトコルを有効にするかどうか |
download |
boolean |
ダウンロード プロトコルを有効にするかどうか |
hls |
boolean |
HLS プロトコルを有効にするかどうか |
smoothStreaming |
boolean |
SmoothStreaming プロトコルを有効にするかどうか |
EnvelopeEncryption
EnvelopeEncryption 暗号化スキームのクラス
名前 | 型 | 説明 |
---|---|---|
clearTracks |
暗号化すべきではないトラックを表す |
|
contentKeys |
各暗号化スキームの既定のコンテンツ キーと、特定のトラック用の個別のコンテンツ キーを表す |
|
customKeyAcquisitionUrlTemplate |
string |
エンド ユーザー プレーヤーにキーを配信するカスタム サービスの URL のテンプレート。 キーの発行に Azure Media Services を使用するときは必要ありません。 このテンプレートでは、置換できるトークンがサポートされ、実行時にサービスによって要求固有の値に更新されます。 現在サポートされているトークンの値は、StreamingLocatorId.AlternativeMediaId の値で置換される {AlternativeMediaId} と、要求対象のキーの ID 値で置換される {ContentKeyId} です。 |
enabledProtocols |
サポートされているプロトコルの表し方 |
ErrorAdditionalInfo
リソース管理エラーの追加情報。
名前 | 型 | 説明 |
---|---|---|
info |
object |
追加情報。 |
type |
string |
追加情報の種類。 |
ErrorDetail
エラーの詳細。
名前 | 型 | 説明 |
---|---|---|
additionalInfo |
エラーの追加情報。 |
|
code |
string |
エラー コード。 |
details |
エラーの詳細です。 |
|
message |
string |
エラー メッセージ。 |
target |
string |
エラーのターゲット。 |
ErrorResponse
エラー応答
名前 | 型 | 説明 |
---|---|---|
error |
error オブジェクト。 |
NoEncryption
NoEncryption スキームのクラス
名前 | 型 | 説明 |
---|---|---|
enabledProtocols |
サポートされているプロトコルの表し方 |
StreamingPolicy
ストリーミング ポリシー リソース
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの完全修飾リソース ID。 例 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name |
string |
リソースの名前 |
properties.commonEncryptionCbcs |
CommonEncryptionCbcs の構成 |
|
properties.commonEncryptionCenc |
CommonEncryptionCenc の構成 |
|
properties.created |
string |
ストリーミング ポリシーの作成時刻 |
properties.defaultContentKeyPolicyName |
string |
現在のストリーミング ポリシーによって使用される既定の ContentKey |
properties.envelopeEncryption |
EnvelopeEncryption の構成 |
|
properties.noEncryption |
NoEncryption の構成 |
|
systemData |
このリソースに関連するシステム メタデータ。 |
|
type |
string |
リソースの型。 例: "Microsoft.Compute/virtualMachines" または "Microsoft.Storage/storageAccounts" |
StreamingPolicyContentKey
コンテンツ キーのプロパティを指定するクラス
名前 | 型 | 説明 |
---|---|---|
label |
string |
ストリーミング ロケーターを作成するときに、ラベルを使用してコンテンツ キーを指定できます |
policyName |
string |
コンテンツ キーで使用されるポリシー |
tracks |
このコンテンツ キーを使用するトラック |
StreamingPolicyContentKeys
ストリーミング ポリシー内のすべてのコンテンツ キーのプロパティを指定するクラス
名前 | 型 | 説明 |
---|---|---|
defaultKey |
暗号化スキームの既定のコンテンツ キー |
|
keyToTrackMappings |
トラックを表すには、個別のコンテンツ キーが必要です |
StreamingPolicyFairPlayConfiguration
ストリーミング ポリシーで FairPlay の構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
allowPersistentLicense |
boolean |
すべてのライセンスが永続的かどうか |
customLicenseAcquisitionUrlTemplate |
string |
エンド ユーザー プレーヤーにライセンスを配信するカスタム サービスの URL のテンプレート。 ライセンスの発行に Azure Media Services を使用するときは必要ありません。 このテンプレートでは、置換できるトークンがサポートされ、実行時にサービスによって要求固有の値に更新されます。 現在サポートされているトークンの値は、StreamingLocatorId.AlternativeMediaId の値で置換される {AlternativeMediaId} と、要求対象のキーの ID 値で置換される {ContentKeyId} です。 |
StreamingPolicyPlayReadyConfiguration
ストリーミング ポリシーで PlayReady の構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
customLicenseAcquisitionUrlTemplate |
string |
エンド ユーザー プレーヤーにライセンスを配信するカスタム サービスの URL のテンプレート。 ライセンスの発行に Azure Media Services を使用するときは必要ありません。 このテンプレートでは、置換できるトークンがサポートされ、実行時にサービスによって要求固有の値に更新されます。 現在サポートされているトークンの値は、StreamingLocatorId.AlternativeMediaId の値で置換される {AlternativeMediaId} と、要求対象のキーの ID 値で置換される {ContentKeyId} です。 |
playReadyCustomAttributes |
string |
PlayReady のカスタム属性 |
StreamingPolicyWidevineConfiguration
ストリーミング ポリシーで Widevine の構成を指定するクラス
名前 | 型 | 説明 |
---|---|---|
customLicenseAcquisitionUrlTemplate |
string |
エンド ユーザー プレーヤーにライセンスを配信するカスタム サービスの URL のテンプレート。 ライセンスの発行に Azure Media Services を使用するときは必要ありません。 このテンプレートでは、置換できるトークンがサポートされ、実行時にサービスによって要求固有の値に更新されます。 現在サポートされているトークンの値は、StreamingLocatorId.AlternativeMediaId の値で置換される {AlternativeMediaId} と、要求対象のキーの ID 値で置換される {ContentKeyId} です。 |
systemData
リソースの作成と最後の変更に関連するメタデータ。
名前 | 型 | 説明 |
---|---|---|
createdAt |
string |
リソース作成のタイムスタンプ (UTC)。 |
createdBy |
string |
リソースを作成した ID。 |
createdByType |
リソースを作成した ID の種類。 |
|
lastModifiedAt |
string |
リソースの最終変更のタイムスタンプ (UTC) |
lastModifiedBy |
string |
リソースを最後に変更した ID。 |
lastModifiedByType |
リソースを最後に変更した ID の種類。 |
TrackPropertyCompareOperation
プロパティ条件の操作を追跡する
名前 | 型 | 説明 |
---|---|---|
Equal |
string |
等号演算 |
Unknown |
string |
不明なトラック プロパティの比較操作 |
TrackPropertyCondition
1 つのトラック プロパティ条件を指定するクラス
名前 | 型 | 説明 |
---|---|---|
operation |
プロパティ条件の操作を追跡する |
|
property |
プロパティの種類を追跡する |
|
value |
string |
プロパティ値を追跡する |
TrackPropertyType
プロパティの種類を追跡する
名前 | 型 | 説明 |
---|---|---|
FourCC |
string |
FourCC を追跡する |
Unknown |
string |
不明なトラック プロパティ |
TrackSelection
トラックを選択するクラス
名前 | 型 | 説明 |
---|---|---|
trackSelections |
TrackSelections は、トラックを指定できるトラック プロパティ条件リストです |