const ( // DefaultBaseURI is the default URI used for the service Media DefaultBaseURI = "https://management.azure.com" )
func UserAgent() string
UserAgent returns the UserAgent string to use when sending http.Requests.
func Version() string
Version returns the semantic version (see http://semver.org) of the client.
APIError the API error.
type APIError struct { // Error - The error properties. Error *ODataError `json:"error,omitempty"` }
AacAudio describes Advanced Audio Codec (AAC) audio encoding settings.
type AacAudio struct { // Profile - The encoding profile to be used when encoding audio with AAC. Possible values include: 'AacLc', 'HeAacV1', 'HeAacV2' Profile AacAudioProfile `json:"profile,omitempty"` // Channels - The number of channels in the audio. Channels *int32 `json:"channels,omitempty"` // SamplingRate - The sampling rate to use for encoding in hertz. SamplingRate *int32 `json:"samplingRate,omitempty"` // Bitrate - The bitrate, in bits per second, of the output encoded audio. Bitrate *int32 `json:"bitrate,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (aa AacAudio) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for AacAudio.
func (aa AacAudio) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for AacAudio.
func (aa AacAudio) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AacAudio.
AacAudioProfile enumerates the values for aac audio profile.
type AacAudioProfile string
const ( // AacLc Specifies that the output audio is to be encoded into AAC Low Complexity profile (AAC-LC). AacLc AacAudioProfile = "AacLc" // HeAacV1 Specifies that the output audio is to be encoded into HE-AAC v1 profile. HeAacV1 AacAudioProfile = "HeAacV1" // HeAacV2 Specifies that the output audio is to be encoded into HE-AAC v2 profile. HeAacV2 AacAudioProfile = "HeAacV2" )
func PossibleAacAudioProfileValues() []AacAudioProfile
PossibleAacAudioProfileValues returns an array of possible values for the AacAudioProfile const type.
AbsoluteClipTime specifies the clip time as an absolute time position in the media file. The absolute time can point to a different position depending on whether the media file starts from a timestamp of zero or not.
type AbsoluteClipTime struct { // Time - The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds. Time *string `json:"time,omitempty"` // OdataType - Possible values include: 'OdataTypeClipTime', 'OdataTypeMicrosoftMediaAbsoluteClipTime', 'OdataTypeMicrosoftMediaUtcClipTime' OdataType OdataTypeBasicClipTime `json:"@odata.type,omitempty"` }
func (act AbsoluteClipTime) AsAbsoluteClipTime() (*AbsoluteClipTime, bool)
AsAbsoluteClipTime is the BasicClipTime implementation for AbsoluteClipTime.
func (act AbsoluteClipTime) AsBasicClipTime() (BasicClipTime, bool)
AsBasicClipTime is the BasicClipTime implementation for AbsoluteClipTime.
func (act AbsoluteClipTime) AsClipTime() (*ClipTime, bool)
AsClipTime is the BasicClipTime implementation for AbsoluteClipTime.
func (act AbsoluteClipTime) AsUtcClipTime() (*UtcClipTime, bool)
AsUtcClipTime is the BasicClipTime implementation for AbsoluteClipTime.
func (act AbsoluteClipTime) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AbsoluteClipTime.
AccountEncryption ...
type AccountEncryption struct { // Type - The type of key used to encrypt the Account Key. Possible values include: 'SystemKey', 'CustomerKey' Type AccountEncryptionKeyType `json:"type,omitempty"` // KeyVaultProperties - The properties of the key used to encrypt the account. KeyVaultProperties *KeyVaultProperties `json:"keyVaultProperties,omitempty"` }
AccountEncryptionKeyType enumerates the values for account encryption key type.
type AccountEncryptionKeyType string
const ( // CustomerKey The Account Key is encrypted with a Customer Key. CustomerKey AccountEncryptionKeyType = "CustomerKey" // SystemKey The Account Key is encrypted with a System Key. SystemKey AccountEncryptionKeyType = "SystemKey" )
func PossibleAccountEncryptionKeyTypeValues() []AccountEncryptionKeyType
PossibleAccountEncryptionKeyTypeValues returns an array of possible values for the AccountEncryptionKeyType const type.
AccountFilter an Account Filter.
type AccountFilter struct { autorest.Response `json:"-"` *FilterProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (af AccountFilter) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AccountFilter.
func (af *AccountFilter) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for AccountFilter struct.
AccountFilterCollection a collection of AccountFilter items.
type AccountFilterCollection struct { autorest.Response `json:"-"` // Value - A collection of AccountFilter items. Value *[]AccountFilter `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (afc AccountFilterCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
AccountFilterCollectionIterator provides access to a complete listing of AccountFilter values.
type AccountFilterCollectionIterator struct {
// contains filtered or unexported fields
}
func NewAccountFilterCollectionIterator(page AccountFilterCollectionPage) AccountFilterCollectionIterator
Creates a new instance of the AccountFilterCollectionIterator type.
func (iter *AccountFilterCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *AccountFilterCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter AccountFilterCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter AccountFilterCollectionIterator) Response() AccountFilterCollection
Response returns the raw server response from the last page request.
func (iter AccountFilterCollectionIterator) Value() AccountFilter
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
AccountFilterCollectionPage contains a page of AccountFilter values.
type AccountFilterCollectionPage struct {
// contains filtered or unexported fields
}
func NewAccountFilterCollectionPage(cur AccountFilterCollection, getNextPage func(context.Context, AccountFilterCollection) (AccountFilterCollection, error)) AccountFilterCollectionPage
Creates a new instance of the AccountFilterCollectionPage type.
func (page *AccountFilterCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *AccountFilterCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page AccountFilterCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page AccountFilterCollectionPage) Response() AccountFilterCollection
Response returns the raw server response from the last page request.
func (page AccountFilterCollectionPage) Values() []AccountFilter
Values returns the slice of values for the current page or nil if there are no values.
AccountFiltersClient is the client for the AccountFilters methods of the Media service.
type AccountFiltersClient struct { BaseClient }
func NewAccountFiltersClient(subscriptionID string) AccountFiltersClient
NewAccountFiltersClient creates an instance of the AccountFiltersClient client.
func NewAccountFiltersClientWithBaseURI(baseURI string, subscriptionID string) AccountFiltersClient
NewAccountFiltersClientWithBaseURI creates an instance of the AccountFiltersClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client AccountFiltersClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, filterName string, parameters AccountFilter) (result AccountFilter, err error)
CreateOrUpdate creates or updates an Account Filter in the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filterName - the Account Filter name parameters - the request parameters
func (client AccountFiltersClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, filterName string, parameters AccountFilter) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client AccountFiltersClient) CreateOrUpdateResponder(resp *http.Response) (result AccountFilter, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client AccountFiltersClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client AccountFiltersClient) Delete(ctx context.Context, resourceGroupName string, accountName string, filterName string) (result autorest.Response, err error)
Delete deletes an Account Filter in the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filterName - the Account Filter name
func (client AccountFiltersClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, filterName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client AccountFiltersClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client AccountFiltersClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client AccountFiltersClient) Get(ctx context.Context, resourceGroupName string, accountName string, filterName string) (result AccountFilter, err error)
Get get the details of an Account Filter in the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filterName - the Account Filter name
func (client AccountFiltersClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, filterName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client AccountFiltersClient) GetResponder(resp *http.Response) (result AccountFilter, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client AccountFiltersClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client AccountFiltersClient) List(ctx context.Context, resourceGroupName string, accountName string) (result AccountFilterCollectionPage, err error)
List list Account Filters in the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client AccountFiltersClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string) (result AccountFilterCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client AccountFiltersClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client AccountFiltersClient) ListResponder(resp *http.Response) (result AccountFilterCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client AccountFiltersClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client AccountFiltersClient) Update(ctx context.Context, resourceGroupName string, accountName string, filterName string, parameters AccountFilter) (result AccountFilter, err error)
Update updates an existing Account Filter in the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filterName - the Account Filter name parameters - the request parameters
func (client AccountFiltersClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, filterName string, parameters AccountFilter) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client AccountFiltersClient) UpdateResponder(resp *http.Response) (result AccountFilter, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client AccountFiltersClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
AkamaiAccessControl akamai access control
type AkamaiAccessControl struct { // AkamaiSignatureHeaderAuthenticationKeyList - authentication key list AkamaiSignatureHeaderAuthenticationKeyList *[]AkamaiSignatureHeaderAuthenticationKey `json:"akamaiSignatureHeaderAuthenticationKeyList,omitempty"` }
AkamaiSignatureHeaderAuthenticationKey akamai Signature Header authentication key.
type AkamaiSignatureHeaderAuthenticationKey struct { // Identifier - identifier of the key Identifier *string `json:"identifier,omitempty"` // Base64Key - authentication key Base64Key *string `json:"base64Key,omitempty"` // Expiration - The expiration time of the authentication key. Expiration *date.Time `json:"expiration,omitempty"` }
AnalysisResolution enumerates the values for analysis resolution.
type AnalysisResolution string
const ( // SourceResolution ... SourceResolution AnalysisResolution = "SourceResolution" // StandardDefinition ... StandardDefinition AnalysisResolution = "StandardDefinition" )
func PossibleAnalysisResolutionValues() []AnalysisResolution
PossibleAnalysisResolutionValues returns an array of possible values for the AnalysisResolution const type.
Asset an Asset.
type Asset struct { autorest.Response `json:"-"` // AssetProperties - The resource properties. *AssetProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (a Asset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Asset.
func (a *Asset) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for Asset struct.
AssetCollection a collection of Asset items.
type AssetCollection struct { autorest.Response `json:"-"` // Value - A collection of Asset items. Value *[]Asset `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (ac AssetCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
AssetCollectionIterator provides access to a complete listing of Asset values.
type AssetCollectionIterator struct {
// contains filtered or unexported fields
}
func NewAssetCollectionIterator(page AssetCollectionPage) AssetCollectionIterator
Creates a new instance of the AssetCollectionIterator type.
func (iter *AssetCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *AssetCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter AssetCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter AssetCollectionIterator) Response() AssetCollection
Response returns the raw server response from the last page request.
func (iter AssetCollectionIterator) Value() Asset
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
AssetCollectionPage contains a page of Asset values.
type AssetCollectionPage struct {
// contains filtered or unexported fields
}
func NewAssetCollectionPage(cur AssetCollection, getNextPage func(context.Context, AssetCollection) (AssetCollection, error)) AssetCollectionPage
Creates a new instance of the AssetCollectionPage type.
func (page *AssetCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *AssetCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page AssetCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page AssetCollectionPage) Response() AssetCollection
Response returns the raw server response from the last page request.
func (page AssetCollectionPage) Values() []Asset
Values returns the slice of values for the current page or nil if there are no values.
AssetContainerPermission enumerates the values for asset container permission.
type AssetContainerPermission string
const ( // Read The SAS URL will allow read access to the container. Read AssetContainerPermission = "Read" // ReadWrite The SAS URL will allow read and write access to the container. ReadWrite AssetContainerPermission = "ReadWrite" // ReadWriteDelete The SAS URL will allow read, write and delete access to the container. ReadWriteDelete AssetContainerPermission = "ReadWriteDelete" )
func PossibleAssetContainerPermissionValues() []AssetContainerPermission
PossibleAssetContainerPermissionValues returns an array of possible values for the AssetContainerPermission const type.
AssetContainerSas the Asset Storage container SAS URLs.
type AssetContainerSas struct { autorest.Response `json:"-"` // AssetContainerSasUrls - The list of Asset container SAS URLs. AssetContainerSasUrls *[]string `json:"assetContainerSasUrls,omitempty"` }
AssetFileEncryptionMetadata the Asset File Storage encryption metadata.
type AssetFileEncryptionMetadata struct { // InitializationVector - The Asset File initialization vector. InitializationVector *string `json:"initializationVector,omitempty"` // AssetFileName - The Asset File name. AssetFileName *string `json:"assetFileName,omitempty"` // AssetFileID - The Asset File Id. AssetFileID *uuid.UUID `json:"assetFileId,omitempty"` }
AssetFilter an Asset Filter.
type AssetFilter struct { autorest.Response `json:"-"` *FilterProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (af AssetFilter) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AssetFilter.
func (af *AssetFilter) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for AssetFilter struct.
AssetFilterCollection a collection of AssetFilter items.
type AssetFilterCollection struct { autorest.Response `json:"-"` // Value - A collection of AssetFilter items. Value *[]AssetFilter `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (afc AssetFilterCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
AssetFilterCollectionIterator provides access to a complete listing of AssetFilter values.
type AssetFilterCollectionIterator struct {
// contains filtered or unexported fields
}
func NewAssetFilterCollectionIterator(page AssetFilterCollectionPage) AssetFilterCollectionIterator
Creates a new instance of the AssetFilterCollectionIterator type.
func (iter *AssetFilterCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *AssetFilterCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter AssetFilterCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter AssetFilterCollectionIterator) Response() AssetFilterCollection
Response returns the raw server response from the last page request.
func (iter AssetFilterCollectionIterator) Value() AssetFilter
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
AssetFilterCollectionPage contains a page of AssetFilter values.
type AssetFilterCollectionPage struct {
// contains filtered or unexported fields
}
func NewAssetFilterCollectionPage(cur AssetFilterCollection, getNextPage func(context.Context, AssetFilterCollection) (AssetFilterCollection, error)) AssetFilterCollectionPage
Creates a new instance of the AssetFilterCollectionPage type.
func (page *AssetFilterCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *AssetFilterCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page AssetFilterCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page AssetFilterCollectionPage) Response() AssetFilterCollection
Response returns the raw server response from the last page request.
func (page AssetFilterCollectionPage) Values() []AssetFilter
Values returns the slice of values for the current page or nil if there are no values.
AssetFiltersClient is the client for the AssetFilters methods of the Media service.
type AssetFiltersClient struct { BaseClient }
func NewAssetFiltersClient(subscriptionID string) AssetFiltersClient
NewAssetFiltersClient creates an instance of the AssetFiltersClient client.
func NewAssetFiltersClientWithBaseURI(baseURI string, subscriptionID string) AssetFiltersClient
NewAssetFiltersClientWithBaseURI creates an instance of the AssetFiltersClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client AssetFiltersClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string, parameters AssetFilter) (result AssetFilter, err error)
CreateOrUpdate creates or updates an Asset Filter associated with the specified Asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. filterName - the Asset Filter name parameters - the request parameters
func (client AssetFiltersClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string, parameters AssetFilter) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client AssetFiltersClient) CreateOrUpdateResponder(resp *http.Response) (result AssetFilter, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client AssetFiltersClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client AssetFiltersClient) Delete(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string) (result autorest.Response, err error)
Delete deletes an Asset Filter associated with the specified Asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. filterName - the Asset Filter name
func (client AssetFiltersClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client AssetFiltersClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client AssetFiltersClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client AssetFiltersClient) Get(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string) (result AssetFilter, err error)
Get get the details of an Asset Filter associated with the specified Asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. filterName - the Asset Filter name
func (client AssetFiltersClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client AssetFiltersClient) GetResponder(resp *http.Response) (result AssetFilter, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client AssetFiltersClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client AssetFiltersClient) List(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result AssetFilterCollectionPage, err error)
List list Asset Filters associated with the specified Asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name.
func (client AssetFiltersClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result AssetFilterCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client AssetFiltersClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client AssetFiltersClient) ListResponder(resp *http.Response) (result AssetFilterCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client AssetFiltersClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client AssetFiltersClient) Update(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string, parameters AssetFilter) (result AssetFilter, err error)
Update updates an existing Asset Filter associated with the specified Asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. filterName - the Asset Filter name parameters - the request parameters
func (client AssetFiltersClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, filterName string, parameters AssetFilter) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client AssetFiltersClient) UpdateResponder(resp *http.Response) (result AssetFilter, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client AssetFiltersClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
AssetProperties the Asset properties.
type AssetProperties struct { // AssetID - READ-ONLY; The Asset ID. AssetID *uuid.UUID `json:"assetId,omitempty"` // Created - READ-ONLY; The creation date of the Asset. Created *date.Time `json:"created,omitempty"` // LastModified - READ-ONLY; The last modified date of the Asset. LastModified *date.Time `json:"lastModified,omitempty"` // AlternateID - The alternate ID of the Asset. AlternateID *string `json:"alternateId,omitempty"` // Description - The Asset description. Description *string `json:"description,omitempty"` // Container - The name of the asset blob container. Container *string `json:"container,omitempty"` // StorageAccountName - The name of the storage account. StorageAccountName *string `json:"storageAccountName,omitempty"` // StorageEncryptionFormat - READ-ONLY; The Asset encryption format. One of None or MediaStorageEncryption. Possible values include: 'None', 'MediaStorageClientEncryption' StorageEncryptionFormat AssetStorageEncryptionFormat `json:"storageEncryptionFormat,omitempty"` }
func (ap AssetProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AssetProperties.
AssetStorageEncryptionFormat enumerates the values for asset storage encryption format.
type AssetStorageEncryptionFormat string
const ( // MediaStorageClientEncryption The Asset is encrypted with Media Services client-side encryption. MediaStorageClientEncryption AssetStorageEncryptionFormat = "MediaStorageClientEncryption" // None The Asset does not use client-side storage encryption (this is the only allowed value for new // Assets). None AssetStorageEncryptionFormat = "None" )
func PossibleAssetStorageEncryptionFormatValues() []AssetStorageEncryptionFormat
PossibleAssetStorageEncryptionFormatValues returns an array of possible values for the AssetStorageEncryptionFormat const type.
AssetStreamingLocator properties of the Streaming Locator.
type AssetStreamingLocator struct { // Name - READ-ONLY; Streaming Locator name. Name *string `json:"name,omitempty"` // AssetName - READ-ONLY; Asset Name. AssetName *string `json:"assetName,omitempty"` // Created - READ-ONLY; The creation time of the Streaming Locator. Created *date.Time `json:"created,omitempty"` // StartTime - READ-ONLY; The start time of the Streaming Locator. StartTime *date.Time `json:"startTime,omitempty"` // EndTime - READ-ONLY; The end time of the Streaming Locator. EndTime *date.Time `json:"endTime,omitempty"` // StreamingLocatorID - READ-ONLY; StreamingLocatorId of the Streaming Locator. StreamingLocatorID *uuid.UUID `json:"streamingLocatorId,omitempty"` // StreamingPolicyName - READ-ONLY; Name of the Streaming Policy used by this Streaming Locator. StreamingPolicyName *string `json:"streamingPolicyName,omitempty"` // DefaultContentKeyPolicyName - READ-ONLY; Name of the default ContentKeyPolicy used by this Streaming Locator. DefaultContentKeyPolicyName *string `json:"defaultContentKeyPolicyName,omitempty"` }
func (asl AssetStreamingLocator) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AssetStreamingLocator.
AssetsClient is the client for the Assets methods of the Media service.
type AssetsClient struct { BaseClient }
func NewAssetsClient(subscriptionID string) AssetsClient
NewAssetsClient creates an instance of the AssetsClient client.
func NewAssetsClientWithBaseURI(baseURI string, subscriptionID string) AssetsClient
NewAssetsClientWithBaseURI creates an instance of the AssetsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client AssetsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters Asset) (result Asset, err error)
CreateOrUpdate creates or updates an Asset in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. parameters - the request parameters
func (client AssetsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters Asset) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client AssetsClient) CreateOrUpdateResponder(resp *http.Response) (result Asset, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client AssetsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result autorest.Response, err error)
Delete deletes an Asset in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name.
func (client AssetsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client AssetsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client AssetsClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) Get(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result Asset, err error)
Get get the details of an Asset in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name.
func (client AssetsClient) GetEncryptionKey(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result StorageEncryptedAssetDecryptionData, err error)
GetEncryptionKey gets the Asset storage encryption keys used to decrypt content created by version 2 of the Media Services API Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name.
func (client AssetsClient) GetEncryptionKeyPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string) (*http.Request, error)
GetEncryptionKeyPreparer prepares the GetEncryptionKey request.
func (client AssetsClient) GetEncryptionKeyResponder(resp *http.Response) (result StorageEncryptedAssetDecryptionData, err error)
GetEncryptionKeyResponder handles the response to the GetEncryptionKey request. The method always closes the http.Response Body.
func (client AssetsClient) GetEncryptionKeySender(req *http.Request) (*http.Response, error)
GetEncryptionKeySender sends the GetEncryptionKey request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client AssetsClient) GetResponder(resp *http.Response) (result Asset, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client AssetsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result AssetCollectionPage, err error)
List list Assets in the Media Services account with optional filtering and ordering Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filter - restricts the set of items returned. top - specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n. orderby - specifies the key by which the result collection should be ordered.
func (client AssetsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result AssetCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client AssetsClient) ListContainerSas(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters ListContainerSasInput) (result AssetContainerSas, err error)
ListContainerSas lists storage container URLs with shared access signatures (SAS) for uploading and downloading Asset content. The signatures are derived from the storage account keys. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. parameters - the request parameters
func (client AssetsClient) ListContainerSasPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters ListContainerSasInput) (*http.Request, error)
ListContainerSasPreparer prepares the ListContainerSas request.
func (client AssetsClient) ListContainerSasResponder(resp *http.Response) (result AssetContainerSas, err error)
ListContainerSasResponder handles the response to the ListContainerSas request. The method always closes the http.Response Body.
func (client AssetsClient) ListContainerSasSender(req *http.Request) (*http.Response, error)
ListContainerSasSender sends the ListContainerSas request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client AssetsClient) ListResponder(resp *http.Response) (result AssetCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client AssetsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) ListStreamingLocators(ctx context.Context, resourceGroupName string, accountName string, assetName string) (result ListStreamingLocatorsResponse, err error)
ListStreamingLocators lists Streaming Locators which are associated with this asset. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name.
func (client AssetsClient) ListStreamingLocatorsPreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string) (*http.Request, error)
ListStreamingLocatorsPreparer prepares the ListStreamingLocators request.
func (client AssetsClient) ListStreamingLocatorsResponder(resp *http.Response) (result ListStreamingLocatorsResponse, err error)
ListStreamingLocatorsResponder handles the response to the ListStreamingLocators request. The method always closes the http.Response Body.
func (client AssetsClient) ListStreamingLocatorsSender(req *http.Request) (*http.Response, error)
ListStreamingLocatorsSender sends the ListStreamingLocators request. The method will close the http.Response Body if it receives an error.
func (client AssetsClient) Update(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters Asset) (result Asset, err error)
Update updates an existing Asset in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. assetName - the Asset name. parameters - the request parameters
func (client AssetsClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, assetName string, parameters Asset) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client AssetsClient) UpdateResponder(resp *http.Response) (result Asset, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client AssetsClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
AttributeFilter enumerates the values for attribute filter.
type AttributeFilter string
const ( // All All tracks will be included. All AttributeFilter = "All" // Bottom The first track will be included when the attribute is sorted in ascending order. Generally used // to select the smallest bitrate. Bottom AttributeFilter = "Bottom" // Top The first track will be included when the attribute is sorted in descending order. Generally used // to select the largest bitrate. Top AttributeFilter = "Top" // ValueEquals Any tracks that have an attribute equal to the value given will be included. ValueEquals AttributeFilter = "ValueEquals" )
func PossibleAttributeFilterValues() []AttributeFilter
PossibleAttributeFilterValues returns an array of possible values for the AttributeFilter const type.
Audio defines the common properties for all audio codecs.
type Audio struct { // Channels - The number of channels in the audio. Channels *int32 `json:"channels,omitempty"` // SamplingRate - The sampling rate to use for encoding in hertz. SamplingRate *int32 `json:"samplingRate,omitempty"` // Bitrate - The bitrate, in bits per second, of the output encoded audio. Bitrate *int32 `json:"bitrate,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (a Audio) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for Audio.
func (a Audio) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for Audio.
func (a Audio) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for Audio.
func (a Audio) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for Audio.
func (a Audio) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for Audio.
func (a Audio) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for Audio.
func (a Audio) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for Audio.
func (a Audio) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for Audio.
func (a Audio) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for Audio.
func (a Audio) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for Audio.
func (a Audio) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for Audio.
func (a Audio) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for Audio.
func (a Audio) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for Audio.
func (a Audio) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for Audio.
func (a Audio) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for Audio.
func (a Audio) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Audio.
AudioAnalysisMode enumerates the values for audio analysis mode.
type AudioAnalysisMode string
const ( // Basic This mode performs speech-to-text transcription and generation of a VTT subtitle/caption file. The // output of this mode includes an Insights JSON file including only the keywords, transcription,and timing // information. Automatic language detection and speaker diarization are not included in this mode. Basic AudioAnalysisMode = "Basic" // Standard Performs all operations included in the Basic mode, additionally performing language detection // and speaker diarization. Standard AudioAnalysisMode = "Standard" )
func PossibleAudioAnalysisModeValues() []AudioAnalysisMode
PossibleAudioAnalysisModeValues returns an array of possible values for the AudioAnalysisMode const type.
AudioAnalyzerPreset the Audio Analyzer preset applies a pre-defined set of AI-based analysis operations, including speech transcription. Currently, the preset supports processing of content with a single audio track.
type AudioAnalyzerPreset struct { // AudioLanguage - The language for the audio payload in the input using the BCP-47 format of 'language tag-region' (e.g: 'en-US'). If you know the language of your content, it is recommended that you specify it. The language must be specified explicitly for AudioAnalysisMode::Basic, since automatic language detection is not included in basic mode. If the language isn't specified or set to null, automatic language detection will choose the first language detected and process with the selected language for the duration of the file. It does not currently support dynamically switching between languages after the first language is detected. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to 'en-US'." The list of supported languages is available here: https://go.microsoft.com/fwlink/?linkid=2109463 AudioLanguage *string `json:"audioLanguage,omitempty"` // Mode - Determines the set of audio analysis operations to be performed. If unspecified, the Standard AudioAnalysisMode would be chosen. Possible values include: 'Standard', 'Basic' Mode AudioAnalysisMode `json:"mode,omitempty"` // ExperimentalOptions - Dictionary containing key value pairs for parameters not exposed in the preset itself ExperimentalOptions map[string]*string `json:"experimentalOptions"` // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (aap AudioAnalyzerPreset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for AudioAnalyzerPreset.
func (aap AudioAnalyzerPreset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AudioAnalyzerPreset.
AudioOverlay describes the properties of an audio overlay.
type AudioOverlay struct { // InputLabel - The label of the job input which is to be used as an overlay. The Input must specify exactly one file. You can specify an image file in JPG, PNG, GIF or BMP format, or an audio file (such as a WAV, MP3, WMA or M4A file), or a video file. See https://aka.ms/mesformats for the complete list of supported audio and video file formats. InputLabel *string `json:"inputLabel,omitempty"` // Start - The start position, with reference to the input video, at which the overlay starts. The value should be in ISO 8601 format. For example, PT05S to start the overlay at 5 seconds into the input video. If not specified the overlay starts from the beginning of the input video. Start *string `json:"start,omitempty"` // End - The end position, with reference to the input video, at which the overlay ends. The value should be in ISO 8601 format. For example, PT30S to end the overlay at 30 seconds into the input video. If not specified or the value is greater than the input video duration, the overlay will be applied until the end of the input video if the overlay media duration is greater than the input video duration, else the overlay will last as long as the overlay media duration. End *string `json:"end,omitempty"` // FadeInDuration - The duration over which the overlay fades in onto the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade in (same as PT0S). FadeInDuration *string `json:"fadeInDuration,omitempty"` // FadeOutDuration - The duration over which the overlay fades out of the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade out (same as PT0S). FadeOutDuration *string `json:"fadeOutDuration,omitempty"` // AudioGainLevel - The gain level of audio in the overlay. The value should be in the range [0, 1.0]. The default is 1.0. AudioGainLevel *float64 `json:"audioGainLevel,omitempty"` // OdataType - Possible values include: 'OdataTypeOverlay', 'OdataTypeMicrosoftMediaAudioOverlay', 'OdataTypeMicrosoftMediaVideoOverlay' OdataType OdataTypeBasicOverlay `json:"@odata.type,omitempty"` }
func (ao AudioOverlay) AsAudioOverlay() (*AudioOverlay, bool)
AsAudioOverlay is the BasicOverlay implementation for AudioOverlay.
func (ao AudioOverlay) AsBasicOverlay() (BasicOverlay, bool)
AsBasicOverlay is the BasicOverlay implementation for AudioOverlay.
func (ao AudioOverlay) AsOverlay() (*Overlay, bool)
AsOverlay is the BasicOverlay implementation for AudioOverlay.
func (ao AudioOverlay) AsVideoOverlay() (*VideoOverlay, bool)
AsVideoOverlay is the BasicOverlay implementation for AudioOverlay.
func (ao AudioOverlay) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AudioOverlay.
AudioTrackDescriptor a TrackSelection to select audio tracks.
type AudioTrackDescriptor struct { // ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks. Possible values include: 'FrontLeft', 'FrontRight', 'Center', 'LowFrequencyEffects', 'BackLeft', 'BackRight', 'StereoLeft', 'StereoRight' ChannelMapping ChannelMapping `json:"channelMapping,omitempty"` // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (atd AudioTrackDescriptor) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for AudioTrackDescriptor.
func (atd AudioTrackDescriptor) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AudioTrackDescriptor.
AzureEntityResource the resource model definition for an Azure Resource Manager resource with an etag.
type AzureEntityResource struct { // Etag - READ-ONLY; Resource Etag. Etag *string `json:"etag,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (aer AzureEntityResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AzureEntityResource.
BaseClient is the base client for Media.
type BaseClient struct { autorest.Client BaseURI string SubscriptionID string }
func New(subscriptionID string) BaseClient
New creates an instance of the BaseClient client.
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient
NewWithBaseURI creates an instance of the BaseClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
BasicAudio defines the common properties for all audio codecs.
type BasicAudio interface { AsAacAudio() (*AacAudio, bool) AsAudio() (*Audio, bool) }
BasicAudioAnalyzerPreset the Audio Analyzer preset applies a pre-defined set of AI-based analysis operations, including speech transcription. Currently, the preset supports processing of content with a single audio track.
type BasicAudioAnalyzerPreset interface { AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool) }
BasicAudioTrackDescriptor a TrackSelection to select audio tracks.
type BasicAudioTrackDescriptor interface { AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool) }
BasicClipTime base class for specifying a clip time. Use sub classes of this class to specify the time position in the media.
type BasicClipTime interface { AsAbsoluteClipTime() (*AbsoluteClipTime, bool) AsUtcClipTime() (*UtcClipTime, bool) AsClipTime() (*ClipTime, bool) }
BasicCodec describes the basic properties of all codecs.
type BasicCodec interface { AsAudio() (*Audio, bool) AsBasicAudio() (BasicAudio, bool) AsAacAudio() (*AacAudio, bool) AsVideo() (*Video, bool) AsBasicVideo() (BasicVideo, bool) AsH265Video() (*H265Video, bool) AsCopyVideo() (*CopyVideo, bool) AsImage() (*Image, bool) AsBasicImage() (BasicImage, bool) AsCopyAudio() (*CopyAudio, bool) AsH264Video() (*H264Video, bool) AsJpgImage() (*JpgImage, bool) AsPngImage() (*PngImage, bool) AsCodec() (*Codec, bool) }
BasicContentKeyPolicyConfiguration base class for Content Key Policy configuration. A derived class must be used to create a configuration.
type BasicContentKeyPolicyConfiguration interface { AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool) }
BasicContentKeyPolicyPlayReadyContentKeyLocation base class for content key ID location. A derived class must be used to represent the location.
type BasicContentKeyPolicyPlayReadyContentKeyLocation interface { AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, bool) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, bool) AsContentKeyPolicyPlayReadyContentKeyLocation() (*ContentKeyPolicyPlayReadyContentKeyLocation, bool) }
BasicContentKeyPolicyRestriction base class for Content Key Policy restrictions. A derived class must be used to create a restriction.
type BasicContentKeyPolicyRestriction interface { AsContentKeyPolicyOpenRestriction() (*ContentKeyPolicyOpenRestriction, bool) AsContentKeyPolicyUnknownRestriction() (*ContentKeyPolicyUnknownRestriction, bool) AsContentKeyPolicyTokenRestriction() (*ContentKeyPolicyTokenRestriction, bool) AsContentKeyPolicyRestriction() (*ContentKeyPolicyRestriction, bool) }
BasicContentKeyPolicyRestrictionTokenKey base class for Content Key Policy key for token validation. A derived class must be used to create a token key.
type BasicContentKeyPolicyRestrictionTokenKey interface { AsContentKeyPolicySymmetricTokenKey() (*ContentKeyPolicySymmetricTokenKey, bool) AsContentKeyPolicyRsaTokenKey() (*ContentKeyPolicyRsaTokenKey, bool) AsContentKeyPolicyX509CertificateTokenKey() (*ContentKeyPolicyX509CertificateTokenKey, bool) AsContentKeyPolicyRestrictionTokenKey() (*ContentKeyPolicyRestrictionTokenKey, bool) }
BasicFormat base class for output.
type BasicFormat interface { AsImageFormat() (*ImageFormat, bool) AsBasicImageFormat() (BasicImageFormat, bool) AsJpgFormat() (*JpgFormat, bool) AsPngFormat() (*PngFormat, bool) AsMultiBitrateFormat() (*MultiBitrateFormat, bool) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool) AsMp4Format() (*Mp4Format, bool) AsTransportStreamFormat() (*TransportStreamFormat, bool) AsFormat() (*Format, bool) }
BasicH265VideoLayer describes the settings to be used when encoding the input video into a desired output bitrate layer.
type BasicH265VideoLayer interface { AsH265Layer() (*H265Layer, bool) AsH265VideoLayer() (*H265VideoLayer, bool) }
BasicImage describes the basic properties for generating thumbnails from the input video
type BasicImage interface { AsJpgImage() (*JpgImage, bool) AsPngImage() (*PngImage, bool) AsImage() (*Image, bool) }
BasicImageFormat describes the properties for an output image file.
type BasicImageFormat interface { AsJpgFormat() (*JpgFormat, bool) AsPngFormat() (*PngFormat, bool) AsImageFormat() (*ImageFormat, bool) }
BasicInputDefinition base class for defining an input. Use sub classes of this class to specify tracks selections and related metadata.
type BasicInputDefinition interface { AsFromAllInputFile() (*FromAllInputFile, bool) AsFromEachInputFile() (*FromEachInputFile, bool) AsInputFile() (*InputFile, bool) AsInputDefinition() (*InputDefinition, bool) }
BasicJobInput base class for inputs to a Job.
type BasicJobInput interface { AsJobInputClip() (*JobInputClip, bool) AsBasicJobInputClip() (BasicJobInputClip, bool) AsJobInputs() (*JobInputs, bool) AsJobInputAsset() (*JobInputAsset, bool) AsJobInputHTTP() (*JobInputHTTP, bool) AsJobInputSequence() (*JobInputSequence, bool) AsJobInput() (*JobInput, bool) }
BasicJobInputClip represents input files for a Job.
type BasicJobInputClip interface { AsJobInputAsset() (*JobInputAsset, bool) AsJobInputHTTP() (*JobInputHTTP, bool) AsJobInputClip() (*JobInputClip, bool) }
BasicJobOutput describes all the properties of a JobOutput.
type BasicJobOutput interface { AsJobOutputAsset() (*JobOutputAsset, bool) AsJobOutput() (*JobOutput, bool) }
BasicLayer the encoder can be configured to produce video and/or images (thumbnails) at different resolutions, by specifying a layer for each desired resolution. A layer represents the properties for the video or image at a resolution.
type BasicLayer interface { AsH265VideoLayer() (*H265VideoLayer, bool) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool) AsH265Layer() (*H265Layer, bool) AsVideoLayer() (*VideoLayer, bool) AsBasicVideoLayer() (BasicVideoLayer, bool) AsH264Layer() (*H264Layer, bool) AsJpgLayer() (*JpgLayer, bool) AsPngLayer() (*PngLayer, bool) AsLayer() (*Layer, bool) }
BasicMultiBitrateFormat describes the properties for producing a collection of GOP aligned multi-bitrate files. The default behavior is to produce one output file for each video layer which is muxed together with all the audios. The exact output files produced can be controlled by specifying the outputFiles collection.
type BasicMultiBitrateFormat interface { AsMp4Format() (*Mp4Format, bool) AsTransportStreamFormat() (*TransportStreamFormat, bool) AsMultiBitrateFormat() (*MultiBitrateFormat, bool) }
BasicOverlay base type for all overlays - image, audio or video.
type BasicOverlay interface { AsAudioOverlay() (*AudioOverlay, bool) AsVideoOverlay() (*VideoOverlay, bool) AsOverlay() (*Overlay, bool) }
BasicPreset base type for all Presets, which define the recipe or instructions on how the input media files should be processed.
type BasicPreset interface { AsFaceDetectorPreset() (*FaceDetectorPreset, bool) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool) AsStandardEncoderPreset() (*StandardEncoderPreset, bool) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool) AsPreset() (*Preset, bool) }
BasicTrackDescriptor base type for all TrackDescriptor types, which define the metadata and selection for tracks that should be processed by a Job
type BasicTrackDescriptor interface { AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool) AsTrackDescriptor() (*TrackDescriptor, bool) }
BasicVideo describes the basic properties for encoding the input video.
type BasicVideo interface { AsH265Video() (*H265Video, bool) AsImage() (*Image, bool) AsBasicImage() (BasicImage, bool) AsH264Video() (*H264Video, bool) AsJpgImage() (*JpgImage, bool) AsPngImage() (*PngImage, bool) AsVideo() (*Video, bool) }
BasicVideoLayer describes the settings to be used when encoding the input video into a desired output bitrate layer.
type BasicVideoLayer interface { AsH264Layer() (*H264Layer, bool) AsVideoLayer() (*VideoLayer, bool) }
BasicVideoTrackDescriptor a TrackSelection to select video tracks.
type BasicVideoTrackDescriptor interface { AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool) }
BlurType enumerates the values for blur type.
type BlurType string
const ( // Black Black: Black out filter Black BlurType = "Black" // Box Box: debug filter, bounding box only Box BlurType = "Box" // High High: Confuse blur filter High BlurType = "High" // Low Low: box-car blur filter Low BlurType = "Low" // Med Med: Gaussian blur filter Med BlurType = "Med" )
func PossibleBlurTypeValues() []BlurType
PossibleBlurTypeValues returns an array of possible values for the BlurType const type.
BuiltInStandardEncoderPreset describes a built-in preset for encoding the input video with the Standard Encoder.
type BuiltInStandardEncoderPreset struct { // PresetName - The built-in preset to be used for encoding videos. Possible values include: 'H264SingleBitrateSD', 'H264SingleBitrate720p', 'H264SingleBitrate1080p', 'AdaptiveStreaming', 'AACGoodQualityAudio', 'ContentAwareEncodingExperimental', 'ContentAwareEncoding', 'CopyAllBitrateNonInterleaved', 'H264MultipleBitrate1080p', 'H264MultipleBitrate720p', 'H264MultipleBitrateSD', 'H265ContentAwareEncoding', 'H265AdaptiveStreaming', 'H265SingleBitrate720p', 'H265SingleBitrate1080p', 'H265SingleBitrate4K' PresetName EncoderNamedPreset `json:"presetName,omitempty"` // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (bisep BuiltInStandardEncoderPreset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for BuiltInStandardEncoderPreset.
func (bisep BuiltInStandardEncoderPreset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for BuiltInStandardEncoderPreset.
CbcsDrmConfiguration class to specify DRM configurations of CommonEncryptionCbcs scheme in Streaming Policy
type CbcsDrmConfiguration struct { // FairPlay - FairPlay configurations FairPlay *StreamingPolicyFairPlayConfiguration `json:"fairPlay,omitempty"` // PlayReady - PlayReady configurations PlayReady *StreamingPolicyPlayReadyConfiguration `json:"playReady,omitempty"` // Widevine - Widevine configurations Widevine *StreamingPolicyWidevineConfiguration `json:"widevine,omitempty"` }
CencDrmConfiguration class to specify DRM configurations of CommonEncryptionCenc scheme in Streaming Policy
type CencDrmConfiguration struct { // PlayReady - PlayReady configurations PlayReady *StreamingPolicyPlayReadyConfiguration `json:"playReady,omitempty"` // Widevine - Widevine configurations Widevine *StreamingPolicyWidevineConfiguration `json:"widevine,omitempty"` }
ChannelMapping enumerates the values for channel mapping.
type ChannelMapping string
const ( // BackLeft The Back Left Channel. Sometimes referred to as the Left Surround Channel. BackLeft ChannelMapping = "BackLeft" // BackRight The Back Right Channel. Sometimes referred to as the Right Surround Channel. BackRight ChannelMapping = "BackRight" // Center The Center Channel. Center ChannelMapping = "Center" // FrontLeft The Front Left Channel. FrontLeft ChannelMapping = "FrontLeft" // FrontRight The Front Right Channel. FrontRight ChannelMapping = "FrontRight" // LowFrequencyEffects Low Frequency Effects Channel. Sometimes referred to as the Subwoofer. LowFrequencyEffects ChannelMapping = "LowFrequencyEffects" // StereoLeft The Left Stereo channel. Sometimes referred to as Down Mix Left. StereoLeft ChannelMapping = "StereoLeft" // StereoRight The Right Stereo channel. Sometimes referred to as Down Mix Right. StereoRight ChannelMapping = "StereoRight" )
func PossibleChannelMappingValues() []ChannelMapping
PossibleChannelMappingValues returns an array of possible values for the ChannelMapping const type.
CheckNameAvailabilityInput the input to the check name availability request.
type CheckNameAvailabilityInput struct { // Name - The account name. Name *string `json:"name,omitempty"` // Type - The account type. For a Media Services account, this should be 'MediaServices'. Type *string `json:"type,omitempty"` }
ClipTime base class for specifying a clip time. Use sub classes of this class to specify the time position in the media.
type ClipTime struct { // OdataType - Possible values include: 'OdataTypeClipTime', 'OdataTypeMicrosoftMediaAbsoluteClipTime', 'OdataTypeMicrosoftMediaUtcClipTime' OdataType OdataTypeBasicClipTime `json:"@odata.type,omitempty"` }
func (ct ClipTime) AsAbsoluteClipTime() (*AbsoluteClipTime, bool)
AsAbsoluteClipTime is the BasicClipTime implementation for ClipTime.
func (ct ClipTime) AsBasicClipTime() (BasicClipTime, bool)
AsBasicClipTime is the BasicClipTime implementation for ClipTime.
func (ct ClipTime) AsClipTime() (*ClipTime, bool)
AsClipTime is the BasicClipTime implementation for ClipTime.
func (ct ClipTime) AsUtcClipTime() (*UtcClipTime, bool)
AsUtcClipTime is the BasicClipTime implementation for ClipTime.
func (ct ClipTime) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ClipTime.
Codec describes the basic properties of all codecs.
type Codec struct { // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (c Codec) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for Codec.
func (c Codec) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for Codec.
func (c Codec) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for Codec.
func (c Codec) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for Codec.
func (c Codec) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for Codec.
func (c Codec) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for Codec.
func (c Codec) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for Codec.
func (c Codec) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for Codec.
func (c Codec) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for Codec.
func (c Codec) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for Codec.
func (c Codec) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for Codec.
func (c Codec) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for Codec.
func (c Codec) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for Codec.
func (c Codec) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for Codec.
func (c Codec) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for Codec.
func (c Codec) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Codec.
CommonEncryptionCbcs class for CommonEncryptionCbcs encryption scheme
type CommonEncryptionCbcs struct { // EnabledProtocols - Representing supported protocols EnabledProtocols *EnabledProtocols `json:"enabledProtocols,omitempty"` // ClearTracks - Representing which tracks should not be encrypted ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` // Drm - Configuration of DRMs for current encryption scheme Drm *CbcsDrmConfiguration `json:"drm,omitempty"` }
CommonEncryptionCenc class for envelope encryption scheme
type CommonEncryptionCenc struct { // EnabledProtocols - Representing supported protocols EnabledProtocols *EnabledProtocols `json:"enabledProtocols,omitempty"` // ClearTracks - Representing which tracks should not be encrypted ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` // Drm - Configuration of DRMs for CommonEncryptionCenc encryption scheme Drm *CencDrmConfiguration `json:"drm,omitempty"` }
ContentKeyPoliciesClient is the client for the ContentKeyPolicies methods of the Media service.
type ContentKeyPoliciesClient struct { BaseClient }
func NewContentKeyPoliciesClient(subscriptionID string) ContentKeyPoliciesClient
NewContentKeyPoliciesClient creates an instance of the ContentKeyPoliciesClient client.
func NewContentKeyPoliciesClientWithBaseURI(baseURI string, subscriptionID string) ContentKeyPoliciesClient
NewContentKeyPoliciesClientWithBaseURI creates an instance of the ContentKeyPoliciesClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client ContentKeyPoliciesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string, parameters ContentKeyPolicy) (result ContentKeyPolicy, err error)
CreateOrUpdate create or update a Content Key Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. contentKeyPolicyName - the Content Key Policy name. parameters - the request parameters
func (client ContentKeyPoliciesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string, parameters ContentKeyPolicy) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client ContentKeyPoliciesClient) CreateOrUpdateResponder(resp *http.Response) (result ContentKeyPolicy, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client ContentKeyPoliciesClient) Delete(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (result autorest.Response, err error)
Delete deletes a Content Key Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. contentKeyPolicyName - the Content Key Policy name.
func (client ContentKeyPoliciesClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client ContentKeyPoliciesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client ContentKeyPoliciesClient) Get(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (result ContentKeyPolicy, err error)
Get get the details of a Content Key Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. contentKeyPolicyName - the Content Key Policy name.
func (client ContentKeyPoliciesClient) GetPolicyPropertiesWithSecrets(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (result ContentKeyPolicyProperties, err error)
GetPolicyPropertiesWithSecrets get a Content Key Policy including secret values Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. contentKeyPolicyName - the Content Key Policy name.
func (client ContentKeyPoliciesClient) GetPolicyPropertiesWithSecretsPreparer(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (*http.Request, error)
GetPolicyPropertiesWithSecretsPreparer prepares the GetPolicyPropertiesWithSecrets request.
func (client ContentKeyPoliciesClient) GetPolicyPropertiesWithSecretsResponder(resp *http.Response) (result ContentKeyPolicyProperties, err error)
GetPolicyPropertiesWithSecretsResponder handles the response to the GetPolicyPropertiesWithSecrets request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) GetPolicyPropertiesWithSecretsSender(req *http.Request) (*http.Response, error)
GetPolicyPropertiesWithSecretsSender sends the GetPolicyPropertiesWithSecrets request. The method will close the http.Response Body if it receives an error.
func (client ContentKeyPoliciesClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client ContentKeyPoliciesClient) GetResponder(resp *http.Response) (result ContentKeyPolicy, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client ContentKeyPoliciesClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result ContentKeyPolicyCollectionPage, err error)
List lists the Content Key Policies in the account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filter - restricts the set of items returned. top - specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n. orderby - specifies the key by which the result collection should be ordered.
func (client ContentKeyPoliciesClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result ContentKeyPolicyCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client ContentKeyPoliciesClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client ContentKeyPoliciesClient) ListResponder(resp *http.Response) (result ContentKeyPolicyCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client ContentKeyPoliciesClient) Update(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string, parameters ContentKeyPolicy) (result ContentKeyPolicy, err error)
Update updates an existing Content Key Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. contentKeyPolicyName - the Content Key Policy name. parameters - the request parameters
func (client ContentKeyPoliciesClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, contentKeyPolicyName string, parameters ContentKeyPolicy) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client ContentKeyPoliciesClient) UpdateResponder(resp *http.Response) (result ContentKeyPolicy, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client ContentKeyPoliciesClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
ContentKeyPolicy a Content Key Policy resource.
type ContentKeyPolicy struct { autorest.Response `json:"-"` *ContentKeyPolicyProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (ckp ContentKeyPolicy) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicy.
func (ckp *ContentKeyPolicy) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for ContentKeyPolicy struct.
ContentKeyPolicyClearKeyConfiguration represents a configuration for non-DRM keys.
type ContentKeyPolicyClearKeyConfiguration struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyClearKeyConfiguration.
func (ckpckc ContentKeyPolicyClearKeyConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyClearKeyConfiguration.
ContentKeyPolicyCollection a collection of ContentKeyPolicy items.
type ContentKeyPolicyCollection struct { autorest.Response `json:"-"` // Value - A collection of ContentKeyPolicy items. Value *[]ContentKeyPolicy `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (ckpc ContentKeyPolicyCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
ContentKeyPolicyCollectionIterator provides access to a complete listing of ContentKeyPolicy values.
type ContentKeyPolicyCollectionIterator struct {
// contains filtered or unexported fields
}
func NewContentKeyPolicyCollectionIterator(page ContentKeyPolicyCollectionPage) ContentKeyPolicyCollectionIterator
Creates a new instance of the ContentKeyPolicyCollectionIterator type.
func (iter *ContentKeyPolicyCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *ContentKeyPolicyCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter ContentKeyPolicyCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ContentKeyPolicyCollectionIterator) Response() ContentKeyPolicyCollection
Response returns the raw server response from the last page request.
func (iter ContentKeyPolicyCollectionIterator) Value() ContentKeyPolicy
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
ContentKeyPolicyCollectionPage contains a page of ContentKeyPolicy values.
type ContentKeyPolicyCollectionPage struct {
// contains filtered or unexported fields
}
func NewContentKeyPolicyCollectionPage(cur ContentKeyPolicyCollection, getNextPage func(context.Context, ContentKeyPolicyCollection) (ContentKeyPolicyCollection, error)) ContentKeyPolicyCollectionPage
Creates a new instance of the ContentKeyPolicyCollectionPage type.
func (page *ContentKeyPolicyCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *ContentKeyPolicyCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page ContentKeyPolicyCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ContentKeyPolicyCollectionPage) Response() ContentKeyPolicyCollection
Response returns the raw server response from the last page request.
func (page ContentKeyPolicyCollectionPage) Values() []ContentKeyPolicy
Values returns the slice of values for the current page or nil if there are no values.
ContentKeyPolicyConfiguration base class for Content Key Policy configuration. A derived class must be used to create a configuration.
type ContentKeyPolicyConfiguration struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpc ContentKeyPolicyConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyConfiguration.
func (ckpc ContentKeyPolicyConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyConfiguration.
ContentKeyPolicyFairPlayConfiguration specifies a configuration for FairPlay licenses.
type ContentKeyPolicyFairPlayConfiguration struct { // Ask - The key that must be used as FairPlay Application Secret key. Ask *[]byte `json:"ask,omitempty"` // FairPlayPfxPassword - The password encrypting FairPlay certificate in PKCS 12 (pfx) format. FairPlayPfxPassword *string `json:"fairPlayPfxPassword,omitempty"` // FairPlayPfx - The Base64 representation of FairPlay certificate in PKCS 12 (pfx) format (including private key). FairPlayPfx *string `json:"fairPlayPfx,omitempty"` // RentalAndLeaseKeyType - The rental and lease key type. Possible values include: 'Unknown', 'Undefined', 'DualExpiry', 'PersistentUnlimited', 'PersistentLimited' RentalAndLeaseKeyType ContentKeyPolicyFairPlayRentalAndLeaseKeyType `json:"rentalAndLeaseKeyType,omitempty"` // RentalDuration - The rental duration. Must be greater than or equal to 0. RentalDuration *int64 `json:"rentalDuration,omitempty"` // OfflineRentalConfiguration - Offline rental policy OfflineRentalConfiguration *ContentKeyPolicyFairPlayOfflineRentalConfiguration `json:"offlineRentalConfiguration,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyFairPlayConfiguration.
func (ckpfpc ContentKeyPolicyFairPlayConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyFairPlayConfiguration.
ContentKeyPolicyFairPlayOfflineRentalConfiguration ...
type ContentKeyPolicyFairPlayOfflineRentalConfiguration struct { // PlaybackDurationSeconds - Playback duration PlaybackDurationSeconds *int64 `json:"playbackDurationSeconds,omitempty"` // StorageDurationSeconds - Storage duration StorageDurationSeconds *int64 `json:"storageDurationSeconds,omitempty"` }
ContentKeyPolicyFairPlayRentalAndLeaseKeyType enumerates the values for content key policy fair play rental and lease key type.
type ContentKeyPolicyFairPlayRentalAndLeaseKeyType string
const ( // DualExpiry Dual expiry for offline rental. DualExpiry ContentKeyPolicyFairPlayRentalAndLeaseKeyType = "DualExpiry" // PersistentLimited Content key can be persisted and the valid duration is limited by the Rental Duration // value PersistentLimited ContentKeyPolicyFairPlayRentalAndLeaseKeyType = "PersistentLimited" // PersistentUnlimited Content key can be persisted with an unlimited duration PersistentUnlimited ContentKeyPolicyFairPlayRentalAndLeaseKeyType = "PersistentUnlimited" // Undefined Key duration is not specified. Undefined ContentKeyPolicyFairPlayRentalAndLeaseKeyType = "Undefined" // Unknown Represents a ContentKeyPolicyFairPlayRentalAndLeaseKeyType that is unavailable in current API // version. Unknown ContentKeyPolicyFairPlayRentalAndLeaseKeyType = "Unknown" )
func PossibleContentKeyPolicyFairPlayRentalAndLeaseKeyTypeValues() []ContentKeyPolicyFairPlayRentalAndLeaseKeyType
PossibleContentKeyPolicyFairPlayRentalAndLeaseKeyTypeValues returns an array of possible values for the ContentKeyPolicyFairPlayRentalAndLeaseKeyType const type.
ContentKeyPolicyOpenRestriction represents an open restriction. License or key will be delivered on every request.
type ContentKeyPolicyOpenRestriction struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction' OdataType OdataTypeBasicContentKeyPolicyRestriction `json:"@odata.type,omitempty"` }
func (ckpor ContentKeyPolicyOpenRestriction) AsBasicContentKeyPolicyRestriction() (BasicContentKeyPolicyRestriction, bool)
AsBasicContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyOpenRestriction.
func (ckpor ContentKeyPolicyOpenRestriction) AsContentKeyPolicyOpenRestriction() (*ContentKeyPolicyOpenRestriction, bool)
AsContentKeyPolicyOpenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyOpenRestriction.
func (ckpor ContentKeyPolicyOpenRestriction) AsContentKeyPolicyRestriction() (*ContentKeyPolicyRestriction, bool)
AsContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyOpenRestriction.
func (ckpor ContentKeyPolicyOpenRestriction) AsContentKeyPolicyTokenRestriction() (*ContentKeyPolicyTokenRestriction, bool)
AsContentKeyPolicyTokenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyOpenRestriction.
func (ckpor ContentKeyPolicyOpenRestriction) AsContentKeyPolicyUnknownRestriction() (*ContentKeyPolicyUnknownRestriction, bool)
AsContentKeyPolicyUnknownRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyOpenRestriction.
func (ckpor ContentKeyPolicyOpenRestriction) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyOpenRestriction.
ContentKeyPolicyOption represents a policy option.
type ContentKeyPolicyOption struct { // PolicyOptionID - READ-ONLY; The legacy Policy Option ID. PolicyOptionID *uuid.UUID `json:"policyOptionId,omitempty"` // Name - The Policy Option description. Name *string `json:"name,omitempty"` // Configuration - The key delivery configuration. Configuration BasicContentKeyPolicyConfiguration `json:"configuration,omitempty"` // Restriction - The requirements that must be met to deliver keys with this configuration Restriction BasicContentKeyPolicyRestriction `json:"restriction,omitempty"` }
func (ckpo ContentKeyPolicyOption) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyOption.
func (ckpo *ContentKeyPolicyOption) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for ContentKeyPolicyOption struct.
ContentKeyPolicyPlayReadyConfiguration specifies a configuration for PlayReady licenses.
type ContentKeyPolicyPlayReadyConfiguration struct { // Licenses - The PlayReady licenses. Licenses *[]ContentKeyPolicyPlayReadyLicense `json:"licenses,omitempty"` // ResponseCustomData - The custom response data. ResponseCustomData *string `json:"responseCustomData,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyPlayReadyConfiguration.
func (ckpprc ContentKeyPolicyPlayReadyConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyPlayReadyConfiguration.
ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader specifies that the content key ID is in the PlayReady header.
type ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyPlayReadyContentKeyLocation', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier' OdataType OdataType `json:"@odata.type,omitempty"` }
func (ckpprcekfh ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader) AsBasicContentKeyPolicyPlayReadyContentKeyLocation() (BasicContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsBasicContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader.
func (ckpprcekfh ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader.
func (ckpprcekfh ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader.
func (ckpprcekfh ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader) AsContentKeyPolicyPlayReadyContentKeyLocation() (*ContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader.
func (ckpprcekfh ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader.
ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier specifies that the content key ID is specified in the PlayReady configuration.
type ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier struct { // KeyID - The content key ID. KeyID *uuid.UUID `json:"keyId,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyPlayReadyContentKeyLocation', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier' OdataType OdataType `json:"@odata.type,omitempty"` }
func (ckpprcekfki ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier) AsBasicContentKeyPolicyPlayReadyContentKeyLocation() (BasicContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsBasicContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier.
func (ckpprcekfki ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier.
func (ckpprcekfki ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier.
func (ckpprcekfki ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier) AsContentKeyPolicyPlayReadyContentKeyLocation() (*ContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier.
func (ckpprcekfki ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier.
ContentKeyPolicyPlayReadyContentKeyLocation base class for content key ID location. A derived class must be used to represent the location.
type ContentKeyPolicyPlayReadyContentKeyLocation struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyPlayReadyContentKeyLocation', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier' OdataType OdataType `json:"@odata.type,omitempty"` }
func (ckpprckl ContentKeyPolicyPlayReadyContentKeyLocation) AsBasicContentKeyPolicyPlayReadyContentKeyLocation() (BasicContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsBasicContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentKeyLocation.
func (ckpprckl ContentKeyPolicyPlayReadyContentKeyLocation) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentKeyLocation.
func (ckpprckl ContentKeyPolicyPlayReadyContentKeyLocation) AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier() (*ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, bool)
AsContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentKeyLocation.
func (ckpprckl ContentKeyPolicyPlayReadyContentKeyLocation) AsContentKeyPolicyPlayReadyContentKeyLocation() (*ContentKeyPolicyPlayReadyContentKeyLocation, bool)
AsContentKeyPolicyPlayReadyContentKeyLocation is the BasicContentKeyPolicyPlayReadyContentKeyLocation implementation for ContentKeyPolicyPlayReadyContentKeyLocation.
func (ckpprckl ContentKeyPolicyPlayReadyContentKeyLocation) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyPlayReadyContentKeyLocation.
ContentKeyPolicyPlayReadyContentType enumerates the values for content key policy play ready content type.
type ContentKeyPolicyPlayReadyContentType string
const ( // ContentKeyPolicyPlayReadyContentTypeUltraVioletDownload Ultraviolet download content type. ContentKeyPolicyPlayReadyContentTypeUltraVioletDownload ContentKeyPolicyPlayReadyContentType = "UltraVioletDownload" // ContentKeyPolicyPlayReadyContentTypeUltraVioletStreaming Ultraviolet streaming content type. ContentKeyPolicyPlayReadyContentTypeUltraVioletStreaming ContentKeyPolicyPlayReadyContentType = "UltraVioletStreaming" // ContentKeyPolicyPlayReadyContentTypeUnknown Represents a ContentKeyPolicyPlayReadyContentType that is // unavailable in current API version. ContentKeyPolicyPlayReadyContentTypeUnknown ContentKeyPolicyPlayReadyContentType = "Unknown" // ContentKeyPolicyPlayReadyContentTypeUnspecified Unspecified content type. ContentKeyPolicyPlayReadyContentTypeUnspecified ContentKeyPolicyPlayReadyContentType = "Unspecified" )
func PossibleContentKeyPolicyPlayReadyContentTypeValues() []ContentKeyPolicyPlayReadyContentType
PossibleContentKeyPolicyPlayReadyContentTypeValues returns an array of possible values for the ContentKeyPolicyPlayReadyContentType const type.
ContentKeyPolicyPlayReadyExplicitAnalogTelevisionRestriction configures the Explicit Analog Television Output Restriction control bits. For further details see the PlayReady Compliance Rules.
type ContentKeyPolicyPlayReadyExplicitAnalogTelevisionRestriction struct { // BestEffort - Indicates whether this restriction is enforced on a Best Effort basis. BestEffort *bool `json:"bestEffort,omitempty"` // ConfigurationData - Configures the restriction control bits. Must be between 0 and 3 inclusive. ConfigurationData *int32 `json:"configurationData,omitempty"` }
ContentKeyPolicyPlayReadyLicense the PlayReady license
type ContentKeyPolicyPlayReadyLicense struct { // AllowTestDevices - A flag indicating whether test devices can use the license. AllowTestDevices *bool `json:"allowTestDevices,omitempty"` // BeginDate - The begin date of license BeginDate *date.Time `json:"beginDate,omitempty"` // ExpirationDate - The expiration date of license. ExpirationDate *date.Time `json:"expirationDate,omitempty"` // RelativeBeginDate - The relative begin date of license. RelativeBeginDate *string `json:"relativeBeginDate,omitempty"` // RelativeExpirationDate - The relative expiration date of license. RelativeExpirationDate *string `json:"relativeExpirationDate,omitempty"` // GracePeriod - The grace period of license. GracePeriod *string `json:"gracePeriod,omitempty"` // PlayRight - The license PlayRight PlayRight *ContentKeyPolicyPlayReadyPlayRight `json:"playRight,omitempty"` // LicenseType - The license type. Possible values include: 'ContentKeyPolicyPlayReadyLicenseTypeUnknown', 'ContentKeyPolicyPlayReadyLicenseTypeNonPersistent', 'ContentKeyPolicyPlayReadyLicenseTypePersistent' LicenseType ContentKeyPolicyPlayReadyLicenseType `json:"licenseType,omitempty"` // ContentKeyLocation - The content key location. ContentKeyLocation BasicContentKeyPolicyPlayReadyContentKeyLocation `json:"contentKeyLocation,omitempty"` // ContentType - The PlayReady content type. Possible values include: 'ContentKeyPolicyPlayReadyContentTypeUnknown', 'ContentKeyPolicyPlayReadyContentTypeUnspecified', 'ContentKeyPolicyPlayReadyContentTypeUltraVioletDownload', 'ContentKeyPolicyPlayReadyContentTypeUltraVioletStreaming' ContentType ContentKeyPolicyPlayReadyContentType `json:"contentType,omitempty"` }
func (ckpprl *ContentKeyPolicyPlayReadyLicense) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for ContentKeyPolicyPlayReadyLicense struct.
ContentKeyPolicyPlayReadyLicenseType enumerates the values for content key policy play ready license type.
type ContentKeyPolicyPlayReadyLicenseType string
const ( // ContentKeyPolicyPlayReadyLicenseTypeNonPersistent Non persistent license. ContentKeyPolicyPlayReadyLicenseTypeNonPersistent ContentKeyPolicyPlayReadyLicenseType = "NonPersistent" // ContentKeyPolicyPlayReadyLicenseTypePersistent Persistent license. Allows offline playback. ContentKeyPolicyPlayReadyLicenseTypePersistent ContentKeyPolicyPlayReadyLicenseType = "Persistent" // ContentKeyPolicyPlayReadyLicenseTypeUnknown Represents a ContentKeyPolicyPlayReadyLicenseType that is // unavailable in current API version. ContentKeyPolicyPlayReadyLicenseTypeUnknown ContentKeyPolicyPlayReadyLicenseType = "Unknown" )
func PossibleContentKeyPolicyPlayReadyLicenseTypeValues() []ContentKeyPolicyPlayReadyLicenseType
PossibleContentKeyPolicyPlayReadyLicenseTypeValues returns an array of possible values for the ContentKeyPolicyPlayReadyLicenseType const type.
ContentKeyPolicyPlayReadyPlayRight configures the Play Right in the PlayReady license.
type ContentKeyPolicyPlayReadyPlayRight struct { // FirstPlayExpiration - The amount of time that the license is valid after the license is first used to play content. FirstPlayExpiration *string `json:"firstPlayExpiration,omitempty"` // ScmsRestriction - Configures the Serial Copy Management System (SCMS) in the license. Must be between 0 and 3 inclusive. ScmsRestriction *int32 `json:"scmsRestriction,omitempty"` // AgcAndColorStripeRestriction - Configures Automatic Gain Control (AGC) and Color Stripe in the license. Must be between 0 and 3 inclusive. AgcAndColorStripeRestriction *int32 `json:"agcAndColorStripeRestriction,omitempty"` // ExplicitAnalogTelevisionOutputRestriction - Configures the Explicit Analog Television Output Restriction in the license. Configuration data must be between 0 and 3 inclusive. ExplicitAnalogTelevisionOutputRestriction *ContentKeyPolicyPlayReadyExplicitAnalogTelevisionRestriction `json:"explicitAnalogTelevisionOutputRestriction,omitempty"` // DigitalVideoOnlyContentRestriction - Enables the Image Constraint For Analog Component Video Restriction in the license. DigitalVideoOnlyContentRestriction *bool `json:"digitalVideoOnlyContentRestriction,omitempty"` // ImageConstraintForAnalogComponentVideoRestriction - Enables the Image Constraint For Analog Component Video Restriction in the license. ImageConstraintForAnalogComponentVideoRestriction *bool `json:"imageConstraintForAnalogComponentVideoRestriction,omitempty"` // ImageConstraintForAnalogComputerMonitorRestriction - Enables the Image Constraint For Analog Component Video Restriction in the license. ImageConstraintForAnalogComputerMonitorRestriction *bool `json:"imageConstraintForAnalogComputerMonitorRestriction,omitempty"` // AllowPassingVideoContentToUnknownOutput - Configures Unknown output handling settings of the license. Possible values include: 'ContentKeyPolicyPlayReadyUnknownOutputPassingOptionUnknown', 'ContentKeyPolicyPlayReadyUnknownOutputPassingOptionNotAllowed', 'ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowed', 'ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowedWithVideoConstriction' AllowPassingVideoContentToUnknownOutput ContentKeyPolicyPlayReadyUnknownOutputPassingOption `json:"allowPassingVideoContentToUnknownOutput,omitempty"` // UncompressedDigitalVideoOpl - Specifies the output protection level for uncompressed digital video. UncompressedDigitalVideoOpl *int32 `json:"uncompressedDigitalVideoOpl,omitempty"` // CompressedDigitalVideoOpl - Specifies the output protection level for compressed digital video. CompressedDigitalVideoOpl *int32 `json:"compressedDigitalVideoOpl,omitempty"` // AnalogVideoOpl - Specifies the output protection level for compressed digital audio. AnalogVideoOpl *int32 `json:"analogVideoOpl,omitempty"` // CompressedDigitalAudioOpl - Specifies the output protection level for compressed digital audio. CompressedDigitalAudioOpl *int32 `json:"compressedDigitalAudioOpl,omitempty"` // UncompressedDigitalAudioOpl - Specifies the output protection level for uncompressed digital audio. UncompressedDigitalAudioOpl *int32 `json:"uncompressedDigitalAudioOpl,omitempty"` }
ContentKeyPolicyPlayReadyUnknownOutputPassingOption enumerates the values for content key policy play ready unknown output passing option.
type ContentKeyPolicyPlayReadyUnknownOutputPassingOption string
const ( // ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowed Passing the video portion of protected // content to an Unknown Output is allowed. ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowed ContentKeyPolicyPlayReadyUnknownOutputPassingOption = "Allowed" // ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowedWithVideoConstriction Passing the video // portion of protected content to an Unknown Output is allowed but with constrained resolution. ContentKeyPolicyPlayReadyUnknownOutputPassingOptionAllowedWithVideoConstriction ContentKeyPolicyPlayReadyUnknownOutputPassingOption = "AllowedWithVideoConstriction" // ContentKeyPolicyPlayReadyUnknownOutputPassingOptionNotAllowed Passing the video portion of protected // content to an Unknown Output is not allowed. ContentKeyPolicyPlayReadyUnknownOutputPassingOptionNotAllowed ContentKeyPolicyPlayReadyUnknownOutputPassingOption = "NotAllowed" // ContentKeyPolicyPlayReadyUnknownOutputPassingOptionUnknown Represents a // ContentKeyPolicyPlayReadyUnknownOutputPassingOption that is unavailable in current API version. ContentKeyPolicyPlayReadyUnknownOutputPassingOptionUnknown ContentKeyPolicyPlayReadyUnknownOutputPassingOption = "Unknown" )
func PossibleContentKeyPolicyPlayReadyUnknownOutputPassingOptionValues() []ContentKeyPolicyPlayReadyUnknownOutputPassingOption
PossibleContentKeyPolicyPlayReadyUnknownOutputPassingOptionValues returns an array of possible values for the ContentKeyPolicyPlayReadyUnknownOutputPassingOption const type.
ContentKeyPolicyProperties the properties of the Content Key Policy.
type ContentKeyPolicyProperties struct { autorest.Response `json:"-"` // PolicyID - READ-ONLY; The legacy Policy ID. PolicyID *uuid.UUID `json:"policyId,omitempty"` // Created - READ-ONLY; The creation date of the Policy Created *date.Time `json:"created,omitempty"` // LastModified - READ-ONLY; The last modified date of the Policy LastModified *date.Time `json:"lastModified,omitempty"` // Description - A description for the Policy. Description *string `json:"description,omitempty"` // Options - The Key Policy options. Options *[]ContentKeyPolicyOption `json:"options,omitempty"` }
func (ckpp ContentKeyPolicyProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyProperties.
ContentKeyPolicyRestriction base class for Content Key Policy restrictions. A derived class must be used to create a restriction.
type ContentKeyPolicyRestriction struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction' OdataType OdataTypeBasicContentKeyPolicyRestriction `json:"@odata.type,omitempty"` }
func (ckpr ContentKeyPolicyRestriction) AsBasicContentKeyPolicyRestriction() (BasicContentKeyPolicyRestriction, bool)
AsBasicContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyRestriction.
func (ckpr ContentKeyPolicyRestriction) AsContentKeyPolicyOpenRestriction() (*ContentKeyPolicyOpenRestriction, bool)
AsContentKeyPolicyOpenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyRestriction.
func (ckpr ContentKeyPolicyRestriction) AsContentKeyPolicyRestriction() (*ContentKeyPolicyRestriction, bool)
AsContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyRestriction.
func (ckpr ContentKeyPolicyRestriction) AsContentKeyPolicyTokenRestriction() (*ContentKeyPolicyTokenRestriction, bool)
AsContentKeyPolicyTokenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyRestriction.
func (ckpr ContentKeyPolicyRestriction) AsContentKeyPolicyUnknownRestriction() (*ContentKeyPolicyUnknownRestriction, bool)
AsContentKeyPolicyUnknownRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyRestriction.
func (ckpr ContentKeyPolicyRestriction) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyRestriction.
ContentKeyPolicyRestrictionTokenKey base class for Content Key Policy key for token validation. A derived class must be used to create a token key.
type ContentKeyPolicyRestrictionTokenKey struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestrictionTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey' OdataType OdataTypeBasicContentKeyPolicyRestrictionTokenKey `json:"@odata.type,omitempty"` }
func (ckprtk ContentKeyPolicyRestrictionTokenKey) AsBasicContentKeyPolicyRestrictionTokenKey() (BasicContentKeyPolicyRestrictionTokenKey, bool)
AsBasicContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRestrictionTokenKey.
func (ckprtk ContentKeyPolicyRestrictionTokenKey) AsContentKeyPolicyRestrictionTokenKey() (*ContentKeyPolicyRestrictionTokenKey, bool)
AsContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRestrictionTokenKey.
func (ckprtk ContentKeyPolicyRestrictionTokenKey) AsContentKeyPolicyRsaTokenKey() (*ContentKeyPolicyRsaTokenKey, bool)
AsContentKeyPolicyRsaTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRestrictionTokenKey.
func (ckprtk ContentKeyPolicyRestrictionTokenKey) AsContentKeyPolicySymmetricTokenKey() (*ContentKeyPolicySymmetricTokenKey, bool)
AsContentKeyPolicySymmetricTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRestrictionTokenKey.
func (ckprtk ContentKeyPolicyRestrictionTokenKey) AsContentKeyPolicyX509CertificateTokenKey() (*ContentKeyPolicyX509CertificateTokenKey, bool)
AsContentKeyPolicyX509CertificateTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRestrictionTokenKey.
func (ckprtk ContentKeyPolicyRestrictionTokenKey) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyRestrictionTokenKey.
ContentKeyPolicyRestrictionTokenType enumerates the values for content key policy restriction token type.
type ContentKeyPolicyRestrictionTokenType string
const ( // ContentKeyPolicyRestrictionTokenTypeJwt JSON Web Token. ContentKeyPolicyRestrictionTokenTypeJwt ContentKeyPolicyRestrictionTokenType = "Jwt" // ContentKeyPolicyRestrictionTokenTypeSwt Simple Web Token. ContentKeyPolicyRestrictionTokenTypeSwt ContentKeyPolicyRestrictionTokenType = "Swt" // ContentKeyPolicyRestrictionTokenTypeUnknown Represents a ContentKeyPolicyRestrictionTokenType that is // unavailable in current API version. ContentKeyPolicyRestrictionTokenTypeUnknown ContentKeyPolicyRestrictionTokenType = "Unknown" )
func PossibleContentKeyPolicyRestrictionTokenTypeValues() []ContentKeyPolicyRestrictionTokenType
PossibleContentKeyPolicyRestrictionTokenTypeValues returns an array of possible values for the ContentKeyPolicyRestrictionTokenType const type.
ContentKeyPolicyRsaTokenKey specifies a RSA key for token validation
type ContentKeyPolicyRsaTokenKey struct { // Exponent - The RSA Parameter exponent Exponent *[]byte `json:"exponent,omitempty"` // Modulus - The RSA Parameter modulus Modulus *[]byte `json:"modulus,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestrictionTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey' OdataType OdataTypeBasicContentKeyPolicyRestrictionTokenKey `json:"@odata.type,omitempty"` }
func (ckprtk ContentKeyPolicyRsaTokenKey) AsBasicContentKeyPolicyRestrictionTokenKey() (BasicContentKeyPolicyRestrictionTokenKey, bool)
AsBasicContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRsaTokenKey.
func (ckprtk ContentKeyPolicyRsaTokenKey) AsContentKeyPolicyRestrictionTokenKey() (*ContentKeyPolicyRestrictionTokenKey, bool)
AsContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRsaTokenKey.
func (ckprtk ContentKeyPolicyRsaTokenKey) AsContentKeyPolicyRsaTokenKey() (*ContentKeyPolicyRsaTokenKey, bool)
AsContentKeyPolicyRsaTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRsaTokenKey.
func (ckprtk ContentKeyPolicyRsaTokenKey) AsContentKeyPolicySymmetricTokenKey() (*ContentKeyPolicySymmetricTokenKey, bool)
AsContentKeyPolicySymmetricTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRsaTokenKey.
func (ckprtk ContentKeyPolicyRsaTokenKey) AsContentKeyPolicyX509CertificateTokenKey() (*ContentKeyPolicyX509CertificateTokenKey, bool)
AsContentKeyPolicyX509CertificateTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyRsaTokenKey.
func (ckprtk ContentKeyPolicyRsaTokenKey) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyRsaTokenKey.
ContentKeyPolicySymmetricTokenKey specifies a symmetric key for token validation.
type ContentKeyPolicySymmetricTokenKey struct { // KeyValue - The key value of the key KeyValue *[]byte `json:"keyValue,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestrictionTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey' OdataType OdataTypeBasicContentKeyPolicyRestrictionTokenKey `json:"@odata.type,omitempty"` }
func (ckpstk ContentKeyPolicySymmetricTokenKey) AsBasicContentKeyPolicyRestrictionTokenKey() (BasicContentKeyPolicyRestrictionTokenKey, bool)
AsBasicContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicySymmetricTokenKey.
func (ckpstk ContentKeyPolicySymmetricTokenKey) AsContentKeyPolicyRestrictionTokenKey() (*ContentKeyPolicyRestrictionTokenKey, bool)
AsContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicySymmetricTokenKey.
func (ckpstk ContentKeyPolicySymmetricTokenKey) AsContentKeyPolicyRsaTokenKey() (*ContentKeyPolicyRsaTokenKey, bool)
AsContentKeyPolicyRsaTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicySymmetricTokenKey.
func (ckpstk ContentKeyPolicySymmetricTokenKey) AsContentKeyPolicySymmetricTokenKey() (*ContentKeyPolicySymmetricTokenKey, bool)
AsContentKeyPolicySymmetricTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicySymmetricTokenKey.
func (ckpstk ContentKeyPolicySymmetricTokenKey) AsContentKeyPolicyX509CertificateTokenKey() (*ContentKeyPolicyX509CertificateTokenKey, bool)
AsContentKeyPolicyX509CertificateTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicySymmetricTokenKey.
func (ckpstk ContentKeyPolicySymmetricTokenKey) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicySymmetricTokenKey.
ContentKeyPolicyTokenClaim represents a token claim.
type ContentKeyPolicyTokenClaim struct { // ClaimType - Token claim type. ClaimType *string `json:"claimType,omitempty"` // ClaimValue - Token claim value. ClaimValue *string `json:"claimValue,omitempty"` }
ContentKeyPolicyTokenRestriction represents a token restriction. Provided token must match these requirements for successful license or key delivery.
type ContentKeyPolicyTokenRestriction struct { // Issuer - The token issuer. Issuer *string `json:"issuer,omitempty"` // Audience - The audience for the token. Audience *string `json:"audience,omitempty"` // PrimaryVerificationKey - The primary verification key. PrimaryVerificationKey BasicContentKeyPolicyRestrictionTokenKey `json:"primaryVerificationKey,omitempty"` // AlternateVerificationKeys - A list of alternative verification keys. AlternateVerificationKeys *[]BasicContentKeyPolicyRestrictionTokenKey `json:"alternateVerificationKeys,omitempty"` // RequiredClaims - A list of required token claims. RequiredClaims *[]ContentKeyPolicyTokenClaim `json:"requiredClaims,omitempty"` // RestrictionTokenType - The type of token. Possible values include: 'ContentKeyPolicyRestrictionTokenTypeUnknown', 'ContentKeyPolicyRestrictionTokenTypeSwt', 'ContentKeyPolicyRestrictionTokenTypeJwt' RestrictionTokenType ContentKeyPolicyRestrictionTokenType `json:"restrictionTokenType,omitempty"` // OpenIDConnectDiscoveryDocument - The OpenID connect discovery document. OpenIDConnectDiscoveryDocument *string `json:"openIdConnectDiscoveryDocument,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction' OdataType OdataTypeBasicContentKeyPolicyRestriction `json:"@odata.type,omitempty"` }
func (ckptr ContentKeyPolicyTokenRestriction) AsBasicContentKeyPolicyRestriction() (BasicContentKeyPolicyRestriction, bool)
AsBasicContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyTokenRestriction.
func (ckptr ContentKeyPolicyTokenRestriction) AsContentKeyPolicyOpenRestriction() (*ContentKeyPolicyOpenRestriction, bool)
AsContentKeyPolicyOpenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyTokenRestriction.
func (ckptr ContentKeyPolicyTokenRestriction) AsContentKeyPolicyRestriction() (*ContentKeyPolicyRestriction, bool)
AsContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyTokenRestriction.
func (ckptr ContentKeyPolicyTokenRestriction) AsContentKeyPolicyTokenRestriction() (*ContentKeyPolicyTokenRestriction, bool)
AsContentKeyPolicyTokenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyTokenRestriction.
func (ckptr ContentKeyPolicyTokenRestriction) AsContentKeyPolicyUnknownRestriction() (*ContentKeyPolicyUnknownRestriction, bool)
AsContentKeyPolicyUnknownRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyTokenRestriction.
func (ckptr ContentKeyPolicyTokenRestriction) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyTokenRestriction.
func (ckptr *ContentKeyPolicyTokenRestriction) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for ContentKeyPolicyTokenRestriction struct.
ContentKeyPolicyUnknownConfiguration represents a ContentKeyPolicyConfiguration that is unavailable in the current API version.
type ContentKeyPolicyUnknownConfiguration struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyUnknownConfiguration.
func (ckpuc ContentKeyPolicyUnknownConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyUnknownConfiguration.
ContentKeyPolicyUnknownRestriction represents a ContentKeyPolicyRestriction that is unavailable in the current API version.
type ContentKeyPolicyUnknownRestriction struct { // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction', 'OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction' OdataType OdataTypeBasicContentKeyPolicyRestriction `json:"@odata.type,omitempty"` }
func (ckpur ContentKeyPolicyUnknownRestriction) AsBasicContentKeyPolicyRestriction() (BasicContentKeyPolicyRestriction, bool)
AsBasicContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyUnknownRestriction.
func (ckpur ContentKeyPolicyUnknownRestriction) AsContentKeyPolicyOpenRestriction() (*ContentKeyPolicyOpenRestriction, bool)
AsContentKeyPolicyOpenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyUnknownRestriction.
func (ckpur ContentKeyPolicyUnknownRestriction) AsContentKeyPolicyRestriction() (*ContentKeyPolicyRestriction, bool)
AsContentKeyPolicyRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyUnknownRestriction.
func (ckpur ContentKeyPolicyUnknownRestriction) AsContentKeyPolicyTokenRestriction() (*ContentKeyPolicyTokenRestriction, bool)
AsContentKeyPolicyTokenRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyUnknownRestriction.
func (ckpur ContentKeyPolicyUnknownRestriction) AsContentKeyPolicyUnknownRestriction() (*ContentKeyPolicyUnknownRestriction, bool)
AsContentKeyPolicyUnknownRestriction is the BasicContentKeyPolicyRestriction implementation for ContentKeyPolicyUnknownRestriction.
func (ckpur ContentKeyPolicyUnknownRestriction) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyUnknownRestriction.
ContentKeyPolicyWidevineConfiguration specifies a configuration for Widevine licenses.
type ContentKeyPolicyWidevineConfiguration struct { // WidevineTemplate - The Widevine template. WidevineTemplate *string `json:"widevineTemplate,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration', 'OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration' OdataType OdataTypeBasicContentKeyPolicyConfiguration `json:"@odata.type,omitempty"` }
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsBasicContentKeyPolicyConfiguration() (BasicContentKeyPolicyConfiguration, bool)
AsBasicContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyClearKeyConfiguration() (*ContentKeyPolicyClearKeyConfiguration, bool)
AsContentKeyPolicyClearKeyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyConfiguration() (*ContentKeyPolicyConfiguration, bool)
AsContentKeyPolicyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyFairPlayConfiguration() (*ContentKeyPolicyFairPlayConfiguration, bool)
AsContentKeyPolicyFairPlayConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyPlayReadyConfiguration() (*ContentKeyPolicyPlayReadyConfiguration, bool)
AsContentKeyPolicyPlayReadyConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyUnknownConfiguration() (*ContentKeyPolicyUnknownConfiguration, bool)
AsContentKeyPolicyUnknownConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) AsContentKeyPolicyWidevineConfiguration() (*ContentKeyPolicyWidevineConfiguration, bool)
AsContentKeyPolicyWidevineConfiguration is the BasicContentKeyPolicyConfiguration implementation for ContentKeyPolicyWidevineConfiguration.
func (ckpwc ContentKeyPolicyWidevineConfiguration) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyWidevineConfiguration.
ContentKeyPolicyX509CertificateTokenKey specifies a certificate for token validation.
type ContentKeyPolicyX509CertificateTokenKey struct { // RawBody - The raw data field of a certificate in PKCS 12 format (X509Certificate2 in .NET) RawBody *[]byte `json:"rawBody,omitempty"` // OdataType - Possible values include: 'OdataTypeContentKeyPolicyRestrictionTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey', 'OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey' OdataType OdataTypeBasicContentKeyPolicyRestrictionTokenKey `json:"@odata.type,omitempty"` }
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) AsBasicContentKeyPolicyRestrictionTokenKey() (BasicContentKeyPolicyRestrictionTokenKey, bool)
AsBasicContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyX509CertificateTokenKey.
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) AsContentKeyPolicyRestrictionTokenKey() (*ContentKeyPolicyRestrictionTokenKey, bool)
AsContentKeyPolicyRestrictionTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyX509CertificateTokenKey.
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) AsContentKeyPolicyRsaTokenKey() (*ContentKeyPolicyRsaTokenKey, bool)
AsContentKeyPolicyRsaTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyX509CertificateTokenKey.
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) AsContentKeyPolicySymmetricTokenKey() (*ContentKeyPolicySymmetricTokenKey, bool)
AsContentKeyPolicySymmetricTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyX509CertificateTokenKey.
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) AsContentKeyPolicyX509CertificateTokenKey() (*ContentKeyPolicyX509CertificateTokenKey, bool)
AsContentKeyPolicyX509CertificateTokenKey is the BasicContentKeyPolicyRestrictionTokenKey implementation for ContentKeyPolicyX509CertificateTokenKey.
func (ckpxctk ContentKeyPolicyX509CertificateTokenKey) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ContentKeyPolicyX509CertificateTokenKey.
CopyAudio a codec flag, which tells the encoder to copy the input audio bitstream.
type CopyAudio struct { // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (ca CopyAudio) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for CopyAudio.
func (ca CopyAudio) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for CopyAudio.
CopyVideo a codec flag, which tells the encoder to copy the input video bitstream without re-encoding.
type CopyVideo struct { // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (cv CopyVideo) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for CopyVideo.
func (cv CopyVideo) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for CopyVideo.
CreatedByType enumerates the values for created by type.
type CreatedByType string
const ( // Application ... Application CreatedByType = "Application" // Key ... Key CreatedByType = "Key" // ManagedIdentity ... ManagedIdentity CreatedByType = "ManagedIdentity" // User ... User CreatedByType = "User" )
func PossibleCreatedByTypeValues() []CreatedByType
PossibleCreatedByTypeValues returns an array of possible values for the CreatedByType const type.
CrossSiteAccessPolicies the client access policy.
type CrossSiteAccessPolicies struct { // ClientAccessPolicy - The content of clientaccesspolicy.xml used by Silverlight. ClientAccessPolicy *string `json:"clientAccessPolicy,omitempty"` // CrossDomainPolicy - The content of crossdomain.xml used by Silverlight. CrossDomainPolicy *string `json:"crossDomainPolicy,omitempty"` }
DefaultKey class to specify properties of default content key for each encryption scheme
type DefaultKey struct { // Label - Label can be used to specify Content Key when creating a Streaming Locator Label *string `json:"label,omitempty"` // PolicyName - Policy used by Default Key PolicyName *string `json:"policyName,omitempty"` }
Deinterlace describes the de-interlacing settings.
type Deinterlace struct { // Parity - The field parity for de-interlacing, defaults to Auto. Possible values include: 'Auto', 'TopFieldFirst', 'BottomFieldFirst' Parity DeinterlaceParity `json:"parity,omitempty"` // Mode - The deinterlacing mode. Defaults to AutoPixelAdaptive. Possible values include: 'Off', 'AutoPixelAdaptive' Mode DeinterlaceMode `json:"mode,omitempty"` }
DeinterlaceMode enumerates the values for deinterlace mode.
type DeinterlaceMode string
const ( // AutoPixelAdaptive Apply automatic pixel adaptive de-interlacing on each frame in the input video. AutoPixelAdaptive DeinterlaceMode = "AutoPixelAdaptive" // Off Disables de-interlacing of the source video. Off DeinterlaceMode = "Off" )
func PossibleDeinterlaceModeValues() []DeinterlaceMode
PossibleDeinterlaceModeValues returns an array of possible values for the DeinterlaceMode const type.
DeinterlaceParity enumerates the values for deinterlace parity.
type DeinterlaceParity string
const ( // Auto Automatically detect the order of fields Auto DeinterlaceParity = "Auto" // BottomFieldFirst Apply bottom field first processing of input video. BottomFieldFirst DeinterlaceParity = "BottomFieldFirst" // TopFieldFirst Apply top field first processing of input video. TopFieldFirst DeinterlaceParity = "TopFieldFirst" )
func PossibleDeinterlaceParityValues() []DeinterlaceParity
PossibleDeinterlaceParityValues returns an array of possible values for the DeinterlaceParity const type.
EdgePolicies ...
type EdgePolicies struct { autorest.Response `json:"-"` UsageDataCollectionPolicy *EdgeUsageDataCollectionPolicy `json:"usageDataCollectionPolicy,omitempty"` }
EdgeUsageDataCollectionPolicy ...
type EdgeUsageDataCollectionPolicy struct { // DataCollectionFrequency - Usage data collection frequency in ISO 8601 duration format e.g. PT10M , PT5H. DataCollectionFrequency *string `json:"dataCollectionFrequency,omitempty"` // DataReportingFrequency - Usage data reporting frequency in ISO 8601 duration format e.g. PT10M , PT5H. DataReportingFrequency *string `json:"dataReportingFrequency,omitempty"` // MaxAllowedUnreportedUsageDuration - Maximum time for which the functionality of the device will not be hampered for not reporting the usage data. MaxAllowedUnreportedUsageDuration *string `json:"maxAllowedUnreportedUsageDuration,omitempty"` // EventHubDetails - Details of Event Hub where the usage will be reported. EventHubDetails *EdgeUsageDataEventHub `json:"eventHubDetails,omitempty"` }
EdgeUsageDataEventHub ...
type EdgeUsageDataEventHub struct { // Name - Name of the Event Hub where usage will be reported. Name *string `json:"name,omitempty"` // Namespace - Namespace of the Event Hub where usage will be reported. Namespace *string `json:"namespace,omitempty"` // Token - SAS token needed to interact with Event Hub. Token *string `json:"token,omitempty"` }
EnabledProtocols class to specify which protocols are enabled
type EnabledProtocols struct { // Download - Enable Download protocol or not Download *bool `json:"download,omitempty"` // Dash - Enable DASH protocol or not Dash *bool `json:"dash,omitempty"` // Hls - Enable HLS protocol or not Hls *bool `json:"hls,omitempty"` // SmoothStreaming - Enable SmoothStreaming protocol or not SmoothStreaming *bool `json:"smoothStreaming,omitempty"` }
EncoderNamedPreset enumerates the values for encoder named preset.
type EncoderNamedPreset string
const ( // AACGoodQualityAudio Produces a single MP4 file containing only stereo audio encoded at 192 kbps. AACGoodQualityAudio EncoderNamedPreset = "AACGoodQualityAudio" // AdaptiveStreaming Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. // Auto-generates a bitrate ladder based on the input resolution, bitrate and frame rate. The // auto-generated preset will never exceed the input resolution. For example, if the input is 720p, output // will remain 720p at best. AdaptiveStreaming EncoderNamedPreset = "AdaptiveStreaming" // ContentAwareEncoding Produces a set of GOP-aligned MP4s by using content-aware encoding. Given any input // content, the service performs an initial lightweight analysis of the input content, and uses the results // to determine the optimal number of layers, appropriate bitrate and resolution settings for delivery by // adaptive streaming. This preset is particularly effective for low and medium complexity videos, where // the output files will be at lower bitrates but at a quality that still delivers a good experience to // viewers. The output will contain MP4 files with video and audio interleaved. ContentAwareEncoding EncoderNamedPreset = "ContentAwareEncoding" // ContentAwareEncodingExperimental Exposes an experimental preset for content-aware encoding. Given any // input content, the service attempts to automatically determine the optimal number of layers, appropriate // bitrate and resolution settings for delivery by adaptive streaming. The underlying algorithms will // continue to evolve over time. The output will contain MP4 files with video and audio interleaved. ContentAwareEncodingExperimental EncoderNamedPreset = "ContentAwareEncodingExperimental" // CopyAllBitrateNonInterleaved Copy all video and audio streams from the input asset as non-interleaved // video and audio output files. This preset can be used to clip an existing asset or convert a group of // key frame (GOP) aligned MP4 files as an asset that can be streamed. CopyAllBitrateNonInterleaved EncoderNamedPreset = "CopyAllBitrateNonInterleaved" // H264MultipleBitrate1080p Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, // and stereo AAC audio. Resolution starts at 1080p and goes down to 180p. H264MultipleBitrate1080p EncoderNamedPreset = "H264MultipleBitrate1080p" // H264MultipleBitrate720p Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 kbps to 400 kbps, // and stereo AAC audio. Resolution starts at 720p and goes down to 180p. H264MultipleBitrate720p EncoderNamedPreset = "H264MultipleBitrate720p" // H264MultipleBitrateSD Produces a set of 5 GOP-aligned MP4 files, ranging from 1900kbps to 400 kbps, and // stereo AAC audio. Resolution starts at 480p and goes down to 240p. H264MultipleBitrateSD EncoderNamedPreset = "H264MultipleBitrateSD" // H264SingleBitrate1080p Produces an MP4 file where the video is encoded with H.264 codec at 6750 kbps and // a picture height of 1080 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H264SingleBitrate1080p EncoderNamedPreset = "H264SingleBitrate1080p" // H264SingleBitrate720p Produces an MP4 file where the video is encoded with H.264 codec at 4500 kbps and // a picture height of 720 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H264SingleBitrate720p EncoderNamedPreset = "H264SingleBitrate720p" // H264SingleBitrateSD Produces an MP4 file where the video is encoded with H.264 codec at 2200 kbps and a // picture height of 480 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H264SingleBitrateSD EncoderNamedPreset = "H264SingleBitrateSD" // H265AdaptiveStreaming Produces a set of GOP aligned MP4 files with H.265 video and stereo AAC audio. // Auto-generates a bitrate ladder based on the input resolution, bitrate and frame rate. The // auto-generated preset will never exceed the input resolution. For example, if the input is 720p, output // will remain 720p at best. H265AdaptiveStreaming EncoderNamedPreset = "H265AdaptiveStreaming" // H265ContentAwareEncoding Produces a set of GOP-aligned MP4s by using content-aware encoding. Given any // input content, the service performs an initial lightweight analysis of the input content, and uses the // results to determine the optimal number of layers, appropriate bitrate and resolution settings for // delivery by adaptive streaming. This preset is particularly effective for low and medium complexity // videos, where the output files will be at lower bitrates but at a quality that still delivers a good // experience to viewers. The output will contain MP4 files with video and audio interleaved. H265ContentAwareEncoding EncoderNamedPreset = "H265ContentAwareEncoding" // H265SingleBitrate1080p Produces an MP4 file where the video is encoded with H.265 codec at 3500 kbps and // a picture height of 1080 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H265SingleBitrate1080p EncoderNamedPreset = "H265SingleBitrate1080p" // H265SingleBitrate4K Produces an MP4 file where the video is encoded with H.265 codec at 9500 kbps and a // picture height of 2160 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H265SingleBitrate4K EncoderNamedPreset = "H265SingleBitrate4K" // H265SingleBitrate720p Produces an MP4 file where the video is encoded with H.265 codec at 1800 kbps and // a picture height of 720 pixels, and the stereo audio is encoded with AAC-LC codec at 128 kbps. H265SingleBitrate720p EncoderNamedPreset = "H265SingleBitrate720p" )
func PossibleEncoderNamedPresetValues() []EncoderNamedPreset
PossibleEncoderNamedPresetValues returns an array of possible values for the EncoderNamedPreset const type.
EncryptionScheme enumerates the values for encryption scheme.
type EncryptionScheme string
const ( // EncryptionSchemeCommonEncryptionCbcs CommonEncryptionCbcs scheme EncryptionSchemeCommonEncryptionCbcs EncryptionScheme = "CommonEncryptionCbcs" // EncryptionSchemeCommonEncryptionCenc CommonEncryptionCenc scheme EncryptionSchemeCommonEncryptionCenc EncryptionScheme = "CommonEncryptionCenc" // EncryptionSchemeEnvelopeEncryption EnvelopeEncryption scheme EncryptionSchemeEnvelopeEncryption EncryptionScheme = "EnvelopeEncryption" // EncryptionSchemeNoEncryption NoEncryption scheme EncryptionSchemeNoEncryption EncryptionScheme = "NoEncryption" )
func PossibleEncryptionSchemeValues() []EncryptionScheme
PossibleEncryptionSchemeValues returns an array of possible values for the EncryptionScheme const type.
EntityNameAvailabilityCheckOutput the response from the check name availability request.
type EntityNameAvailabilityCheckOutput struct { autorest.Response `json:"-"` // NameAvailable - Specifies if the name is available. NameAvailable *bool `json:"nameAvailable,omitempty"` // Reason - Specifies the reason if the name is not available. Reason *string `json:"reason,omitempty"` // Message - Specifies the detailed reason if the name is not available. Message *string `json:"message,omitempty"` }
EntropyMode enumerates the values for entropy mode.
type EntropyMode string
const ( // Cabac Context Adaptive Binary Arithmetic Coder (CABAC) entropy encoding. Cabac EntropyMode = "Cabac" // Cavlc Context Adaptive Variable Length Coder (CAVLC) entropy encoding. Cavlc EntropyMode = "Cavlc" )
func PossibleEntropyModeValues() []EntropyMode
PossibleEntropyModeValues returns an array of possible values for the EntropyMode const type.
EnvelopeEncryption class for EnvelopeEncryption encryption scheme
type EnvelopeEncryption struct { // EnabledProtocols - Representing supported protocols EnabledProtocols *EnabledProtocols `json:"enabledProtocols,omitempty"` // ClearTracks - Representing which tracks should not be encrypted ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` // CustomKeyAcquisitionURLTemplate - Template for the URL of the custom service delivering keys to end user players. Not required when using Azure Media Services for issuing keys. The template supports replaceable tokens that the service will update at runtime with the value specific to the request. The currently supported token values are {AlternativeMediaId}, which is replaced with the value of StreamingLocatorId.AlternativeMediaId, and {ContentKeyId}, which is replaced with the value of identifier of the key being requested. CustomKeyAcquisitionURLTemplate *string `json:"customKeyAcquisitionUrlTemplate,omitempty"` }
FaceDetectorPreset describes all the settings to be used when analyzing a video in order to detect (and optionally redact) all the faces present.
type FaceDetectorPreset struct { // Resolution - Specifies the maximum resolution at which your video is analyzed. The default behavior is "SourceResolution," which will keep the input video at its original resolution when analyzed. Using "StandardDefinition" will resize input videos to standard definition while preserving the appropriate aspect ratio. It will only resize if the video is of higher resolution. For example, a 1920x1080 input would be scaled to 640x360 before processing. Switching to "StandardDefinition" will reduce the time it takes to process high resolution video. It may also reduce the cost of using this component (see https://azure.microsoft.com/en-us/pricing/details/media-services/#analytics for details). However, faces that end up being too small in the resized video may not be detected. Possible values include: 'SourceResolution', 'StandardDefinition' Resolution AnalysisResolution `json:"resolution,omitempty"` // Mode - This mode provides the ability to choose between the following settings: 1) Analyze - For detection only.This mode generates a metadata JSON file marking appearances of faces throughout the video.Where possible, appearances of the same person are assigned the same ID. 2) Combined - Additionally redacts(blurs) detected faces. 3) Redact - This enables a 2-pass process, allowing for selective redaction of a subset of detected faces.It takes in the metadata file from a prior analyze pass, along with the source video, and a user-selected subset of IDs that require redaction. Possible values include: 'Analyze', 'Redact', 'Combined' Mode FaceRedactorMode `json:"mode,omitempty"` // BlurType - Blur type. Possible values include: 'Box', 'Low', 'Med', 'High', 'Black' BlurType BlurType `json:"blurType,omitempty"` // ExperimentalOptions - Dictionary containing key value pairs for parameters not exposed in the preset itself ExperimentalOptions map[string]*string `json:"experimentalOptions"` // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (fdp FaceDetectorPreset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for FaceDetectorPreset.
func (fdp FaceDetectorPreset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for FaceDetectorPreset.
FaceRedactorMode enumerates the values for face redactor mode.
type FaceRedactorMode string
const ( // Analyze Analyze mode detects faces and outputs a metadata file with the results. Allows editing of the // metadata file before faces are blurred with Redact mode. Analyze FaceRedactorMode = "Analyze" // Combined Combined mode does the Analyze and Redact steps in one pass when editing the analyzed faces is // not desired. Combined FaceRedactorMode = "Combined" // Redact Redact mode consumes the metadata file from Analyze mode and redacts the faces found. Redact FaceRedactorMode = "Redact" )
func PossibleFaceRedactorModeValues() []FaceRedactorMode
PossibleFaceRedactorModeValues returns an array of possible values for the FaceRedactorMode const type.
FilterProperties the Media Filter properties.
type FilterProperties struct { // PresentationTimeRange - The presentation time range. PresentationTimeRange *PresentationTimeRange `json:"presentationTimeRange,omitempty"` // FirstQuality - The first quality. FirstQuality *FirstQuality `json:"firstQuality,omitempty"` // Tracks - The tracks selection conditions. Tracks *[]FilterTrackSelection `json:"tracks,omitempty"` }
FilterTrackPropertyCompareOperation enumerates the values for filter track property compare operation.
type FilterTrackPropertyCompareOperation string
const ( // Equal The equal operation. Equal FilterTrackPropertyCompareOperation = "Equal" // NotEqual The not equal operation. NotEqual FilterTrackPropertyCompareOperation = "NotEqual" )
func PossibleFilterTrackPropertyCompareOperationValues() []FilterTrackPropertyCompareOperation
PossibleFilterTrackPropertyCompareOperationValues returns an array of possible values for the FilterTrackPropertyCompareOperation const type.
FilterTrackPropertyCondition the class to specify one track property condition.
type FilterTrackPropertyCondition struct { // Property - The track property type. Possible values include: 'FilterTrackPropertyTypeUnknown', 'FilterTrackPropertyTypeType', 'FilterTrackPropertyTypeName', 'FilterTrackPropertyTypeLanguage', 'FilterTrackPropertyTypeFourCC', 'FilterTrackPropertyTypeBitrate' Property FilterTrackPropertyType `json:"property,omitempty"` // Value - The track property value. Value *string `json:"value,omitempty"` // Operation - The track property condition operation. Possible values include: 'Equal', 'NotEqual' Operation FilterTrackPropertyCompareOperation `json:"operation,omitempty"` }
FilterTrackPropertyType enumerates the values for filter track property type.
type FilterTrackPropertyType string
const ( // FilterTrackPropertyTypeBitrate The bitrate. FilterTrackPropertyTypeBitrate FilterTrackPropertyType = "Bitrate" // FilterTrackPropertyTypeFourCC The fourCC. FilterTrackPropertyTypeFourCC FilterTrackPropertyType = "FourCC" // FilterTrackPropertyTypeLanguage The language. FilterTrackPropertyTypeLanguage FilterTrackPropertyType = "Language" // FilterTrackPropertyTypeName The name. FilterTrackPropertyTypeName FilterTrackPropertyType = "Name" // FilterTrackPropertyTypeType The type. FilterTrackPropertyTypeType FilterTrackPropertyType = "Type" // FilterTrackPropertyTypeUnknown The unknown track property type. FilterTrackPropertyTypeUnknown FilterTrackPropertyType = "Unknown" )
func PossibleFilterTrackPropertyTypeValues() []FilterTrackPropertyType
PossibleFilterTrackPropertyTypeValues returns an array of possible values for the FilterTrackPropertyType const type.
FilterTrackSelection representing a list of FilterTrackPropertyConditions to select a track. The filters are combined using a logical AND operation.
type FilterTrackSelection struct { // TrackSelections - The track selections. TrackSelections *[]FilterTrackPropertyCondition `json:"trackSelections,omitempty"` }
Filters describes all the filtering operations, such as de-interlacing, rotation etc. that are to be applied to the input media before encoding.
type Filters struct { // Deinterlace - The de-interlacing settings. Deinterlace *Deinterlace `json:"deinterlace,omitempty"` // Rotation - The rotation, if any, to be applied to the input video, before it is encoded. Default is Auto. Possible values include: 'RotationAuto', 'RotationNone', 'RotationRotate0', 'RotationRotate90', 'RotationRotate180', 'RotationRotate270' Rotation Rotation `json:"rotation,omitempty"` // Crop - The parameters for the rectangular window with which to crop the input video. Crop *Rectangle `json:"crop,omitempty"` // Overlays - The properties of overlays to be applied to the input video. These could be audio, image or video overlays. Overlays *[]BasicOverlay `json:"overlays,omitempty"` }
func (f *Filters) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for Filters struct.
FirstQuality filter First Quality
type FirstQuality struct { // Bitrate - The first quality bitrate. Bitrate *int32 `json:"bitrate,omitempty"` }
Format base class for output.
type Format struct { // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (f Format) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for Format.
func (f Format) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for Format.
func (f Format) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for Format.
func (f Format) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for Format.
func (f Format) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for Format.
func (f Format) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for Format.
func (f Format) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for Format.
func (f Format) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for Format.
func (f Format) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for Format.
func (f Format) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for Format.
func (f Format) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Format.
FromAllInputFile an InputDefinition that looks across all of the files provided to select tracks specified by the IncludedTracks property. Generally used with the AudioTrackByAttribute and VideoTrackByAttribute to allow selection of a single track across a set of input files.
type FromAllInputFile struct { // IncludedTracks - The list of TrackDescriptors which define the metadata and selection of tracks in the input. IncludedTracks *[]BasicTrackDescriptor `json:"includedTracks,omitempty"` // OdataType - Possible values include: 'OdataTypeInputDefinition', 'OdataTypeMicrosoftMediaFromAllInputFile', 'OdataTypeMicrosoftMediaFromEachInputFile', 'OdataTypeMicrosoftMediaInputFile' OdataType OdataTypeBasicInputDefinition `json:"@odata.type,omitempty"` }
func (faif FromAllInputFile) AsBasicInputDefinition() (BasicInputDefinition, bool)
AsBasicInputDefinition is the BasicInputDefinition implementation for FromAllInputFile.
func (faif FromAllInputFile) AsFromAllInputFile() (*FromAllInputFile, bool)
AsFromAllInputFile is the BasicInputDefinition implementation for FromAllInputFile.
func (faif FromAllInputFile) AsFromEachInputFile() (*FromEachInputFile, bool)
AsFromEachInputFile is the BasicInputDefinition implementation for FromAllInputFile.
func (faif FromAllInputFile) AsInputDefinition() (*InputDefinition, bool)
AsInputDefinition is the BasicInputDefinition implementation for FromAllInputFile.
func (faif FromAllInputFile) AsInputFile() (*InputFile, bool)
AsInputFile is the BasicInputDefinition implementation for FromAllInputFile.
func (faif FromAllInputFile) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for FromAllInputFile.
func (faif *FromAllInputFile) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for FromAllInputFile struct.
FromEachInputFile an InputDefinition that looks at each input file provided to select tracks specified by the IncludedTracks property. Generally used with the AudioTrackByAttribute and VideoTrackByAttribute to select tracks from each file given.
type FromEachInputFile struct { // IncludedTracks - The list of TrackDescriptors which define the metadata and selection of tracks in the input. IncludedTracks *[]BasicTrackDescriptor `json:"includedTracks,omitempty"` // OdataType - Possible values include: 'OdataTypeInputDefinition', 'OdataTypeMicrosoftMediaFromAllInputFile', 'OdataTypeMicrosoftMediaFromEachInputFile', 'OdataTypeMicrosoftMediaInputFile' OdataType OdataTypeBasicInputDefinition `json:"@odata.type,omitempty"` }
func (feif FromEachInputFile) AsBasicInputDefinition() (BasicInputDefinition, bool)
AsBasicInputDefinition is the BasicInputDefinition implementation for FromEachInputFile.
func (feif FromEachInputFile) AsFromAllInputFile() (*FromAllInputFile, bool)
AsFromAllInputFile is the BasicInputDefinition implementation for FromEachInputFile.
func (feif FromEachInputFile) AsFromEachInputFile() (*FromEachInputFile, bool)
AsFromEachInputFile is the BasicInputDefinition implementation for FromEachInputFile.
func (feif FromEachInputFile) AsInputDefinition() (*InputDefinition, bool)
AsInputDefinition is the BasicInputDefinition implementation for FromEachInputFile.
func (feif FromEachInputFile) AsInputFile() (*InputFile, bool)
AsInputFile is the BasicInputDefinition implementation for FromEachInputFile.
func (feif FromEachInputFile) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for FromEachInputFile.
func (feif *FromEachInputFile) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for FromEachInputFile struct.
H264Complexity enumerates the values for h264 complexity.
type H264Complexity string
const ( // Balanced Tells the encoder to use settings that achieve a balance between speed and quality. Balanced H264Complexity = "Balanced" // Quality Tells the encoder to use settings that are optimized to produce higher quality output at the // expense of slower overall encode time. Quality H264Complexity = "Quality" // Speed Tells the encoder to use settings that are optimized for faster encoding. Quality is sacrificed to // decrease encoding time. Speed H264Complexity = "Speed" )
func PossibleH264ComplexityValues() []H264Complexity
PossibleH264ComplexityValues returns an array of possible values for the H264Complexity const type.
H264Layer describes the settings to be used when encoding the input video into a desired output bitrate layer with the H.264 video codec.
type H264Layer struct { // Profile - We currently support Baseline, Main, High, High422, High444. Default is Auto. Possible values include: 'H264VideoProfileAuto', 'H264VideoProfileBaseline', 'H264VideoProfileMain', 'H264VideoProfileHigh', 'H264VideoProfileHigh422', 'H264VideoProfileHigh444' Profile H264VideoProfile `json:"profile,omitempty"` // Level - We currently support Level up to 6.2. The value can be Auto, or a number that matches the H.264 profile. If not specified, the default is Auto, which lets the encoder choose the Level that is appropriate for this layer. Level *string `json:"level,omitempty"` // BufferWindow - The VBV buffer window length. The value should be in ISO 8601 format. The value should be in the range [0.1-100] seconds. The default is 5 seconds (for example, PT5S). BufferWindow *string `json:"bufferWindow,omitempty"` // ReferenceFrames - The number of reference frames to be used when encoding this layer. If not specified, the encoder determines an appropriate number based on the encoder complexity setting. ReferenceFrames *int32 `json:"referenceFrames,omitempty"` // EntropyMode - The entropy mode to be used for this layer. If not specified, the encoder chooses the mode that is appropriate for the profile and level. Possible values include: 'Cabac', 'Cavlc' EntropyMode EntropyMode `json:"entropyMode,omitempty"` // Bitrate - The average bitrate in bits per second at which to encode the input video when generating this layer. This is a required field. Bitrate *int32 `json:"bitrate,omitempty"` // MaxBitrate - The maximum bitrate (in bits per second), at which the VBV buffer should be assumed to refill. If not specified, defaults to the same value as bitrate. MaxBitrate *int32 `json:"maxBitrate,omitempty"` // BFrames - The number of B-frames to be used when encoding this layer. If not specified, the encoder chooses an appropriate number based on the video profile and level. BFrames *int32 `json:"bFrames,omitempty"` // FrameRate - The frame rate (in frames per second) at which to encode this layer. The value can be in the form of M/N where M and N are integers (For example, 30000/1001), or in the form of a number (For example, 30, or 29.97). The encoder enforces constraints on allowed frame rates based on the profile and level. If it is not specified, the encoder will use the same frame rate as the input video. FrameRate *string `json:"frameRate,omitempty"` // Slices - The number of slices to be used when encoding this layer. If not specified, default is zero, which means that encoder will use a single slice for each frame. Slices *int32 `json:"slices,omitempty"` // AdaptiveBFrame - Whether or not adaptive B-frames are to be used when encoding this layer. If not specified, the encoder will turn it on whenever the video profile permits its use. AdaptiveBFrame *bool `json:"adaptiveBFrame,omitempty"` // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (hl H264Layer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for H264Layer.
func (hl H264Layer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for H264Layer.
H264Video describes all the properties for encoding a video with the H.264 codec.
type H264Video struct { // SceneChangeDetection - Whether or not the encoder should insert key frames at scene changes. If not specified, the default is false. This flag should be set to true only when the encoder is being configured to produce a single output video. SceneChangeDetection *bool `json:"sceneChangeDetection,omitempty"` // Complexity - Tells the encoder how to choose its encoding settings. The default value is Balanced. Possible values include: 'Speed', 'Balanced', 'Quality' Complexity H264Complexity `json:"complexity,omitempty"` // Layers - The collection of output H.264 layers to be produced by the encoder. Layers *[]H264Layer `json:"layers,omitempty"` // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (hv H264Video) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for H264Video.
func (hv H264Video) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for H264Video.
func (hv H264Video) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for H264Video.
func (hv H264Video) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for H264Video.
func (hv H264Video) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for H264Video.
func (hv H264Video) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for H264Video.
func (hv H264Video) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for H264Video.
func (hv H264Video) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for H264Video.
func (hv H264Video) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for H264Video.
func (hv H264Video) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for H264Video.
func (hv H264Video) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for H264Video.
func (hv H264Video) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for H264Video.
func (hv H264Video) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for H264Video.
func (hv H264Video) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for H264Video.
func (hv H264Video) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for H264Video.
func (hv H264Video) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for H264Video.
H264VideoProfile enumerates the values for h264 video profile.
type H264VideoProfile string
const ( // H264VideoProfileAuto Tells the encoder to automatically determine the appropriate H.264 profile. H264VideoProfileAuto H264VideoProfile = "Auto" // H264VideoProfileBaseline Baseline profile H264VideoProfileBaseline H264VideoProfile = "Baseline" // H264VideoProfileHigh High profile. H264VideoProfileHigh H264VideoProfile = "High" // H264VideoProfileHigh422 High 4:2:2 profile. H264VideoProfileHigh422 H264VideoProfile = "High422" // H264VideoProfileHigh444 High 4:4:4 predictive profile. H264VideoProfileHigh444 H264VideoProfile = "High444" // H264VideoProfileMain Main profile H264VideoProfileMain H264VideoProfile = "Main" )
func PossibleH264VideoProfileValues() []H264VideoProfile
PossibleH264VideoProfileValues returns an array of possible values for the H264VideoProfile const type.
H265Complexity enumerates the values for h265 complexity.
type H265Complexity string
const ( // H265ComplexityBalanced Tells the encoder to use settings that achieve a balance between speed and // quality. H265ComplexityBalanced H265Complexity = "Balanced" // H265ComplexityQuality Tells the encoder to use settings that are optimized to produce higher quality // output at the expense of slower overall encode time. H265ComplexityQuality H265Complexity = "Quality" // H265ComplexitySpeed Tells the encoder to use settings that are optimized for faster encoding. Quality is // sacrificed to decrease encoding time. H265ComplexitySpeed H265Complexity = "Speed" )
func PossibleH265ComplexityValues() []H265Complexity
PossibleH265ComplexityValues returns an array of possible values for the H265Complexity const type.
H265Layer describes the settings to be used when encoding the input video into a desired output bitrate layer with the H.265 video codec.
type H265Layer struct { // Profile - We currently support Main. Default is Auto. Possible values include: 'H265VideoProfileAuto', 'H265VideoProfileMain' Profile H265VideoProfile `json:"profile,omitempty"` // Level - We currently support Level up to 6.2. The value can be Auto, or a number that matches the H.265 profile. If not specified, the default is Auto, which lets the encoder choose the Level that is appropriate for this layer. Level *string `json:"level,omitempty"` // BufferWindow - The VBV buffer window length. The value should be in ISO 8601 format. The value should be in the range [0.1-100] seconds. The default is 5 seconds (for example, PT5S). BufferWindow *string `json:"bufferWindow,omitempty"` // ReferenceFrames - The number of reference frames to be used when encoding this layer. If not specified, the encoder determines an appropriate number based on the encoder complexity setting. ReferenceFrames *int32 `json:"referenceFrames,omitempty"` // Bitrate - The average bitrate in bits per second at which to encode the input video when generating this layer. For example: a target bitrate of 3000Kbps or 3Mbps means this value should be 3000000 This is a required field. Bitrate *int32 `json:"bitrate,omitempty"` // MaxBitrate - The maximum bitrate (in bits per second), at which the VBV buffer should be assumed to refill. If not specified, defaults to the same value as bitrate. MaxBitrate *int32 `json:"maxBitrate,omitempty"` // BFrames - The number of B-frames to be used when encoding this layer. If not specified, the encoder chooses an appropriate number based on the video profile and level. BFrames *int32 `json:"bFrames,omitempty"` // FrameRate - The frame rate (in frames per second) at which to encode this layer. The value can be in the form of M/N where M and N are integers (For example, 30000/1001), or in the form of a number (For example, 30, or 29.97). The encoder enforces constraints on allowed frame rates based on the profile and level. If it is not specified, the encoder will use the same frame rate as the input video. FrameRate *string `json:"frameRate,omitempty"` // Slices - The number of slices to be used when encoding this layer. If not specified, default is zero, which means that encoder will use a single slice for each frame. Slices *int32 `json:"slices,omitempty"` // AdaptiveBFrame - Specifies whether or not adaptive B-frames are to be used when encoding this layer. If not specified, the encoder will turn it on whenever the video profile permits its use. AdaptiveBFrame *bool `json:"adaptiveBFrame,omitempty"` // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (hl H265Layer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for H265Layer.
func (hl H265Layer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for H265Layer.
H265Video describes all the properties for encoding a video with the H.265 codec.
type H265Video struct { // SceneChangeDetection - Specifies whether or not the encoder should insert key frames at scene changes. If not specified, the default is false. This flag should be set to true only when the encoder is being configured to produce a single output video. SceneChangeDetection *bool `json:"sceneChangeDetection,omitempty"` // Complexity - Tells the encoder how to choose its encoding settings. Quality will provide for a higher compression ratio but at a higher cost and longer compute time. Speed will produce a relatively larger file but is faster and more economical. The default value is Balanced. Possible values include: 'H265ComplexitySpeed', 'H265ComplexityBalanced', 'H265ComplexityQuality' Complexity H265Complexity `json:"complexity,omitempty"` // Layers - The collection of output H.265 layers to be produced by the encoder. Layers *[]H265Layer `json:"layers,omitempty"` // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (hv H265Video) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for H265Video.
func (hv H265Video) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for H265Video.
func (hv H265Video) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for H265Video.
func (hv H265Video) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for H265Video.
func (hv H265Video) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for H265Video.
func (hv H265Video) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for H265Video.
func (hv H265Video) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for H265Video.
func (hv H265Video) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for H265Video.
func (hv H265Video) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for H265Video.
func (hv H265Video) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for H265Video.
func (hv H265Video) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for H265Video.
func (hv H265Video) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for H265Video.
func (hv H265Video) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for H265Video.
func (hv H265Video) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for H265Video.
func (hv H265Video) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for H265Video.
func (hv H265Video) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for H265Video.
H265VideoLayer describes the settings to be used when encoding the input video into a desired output bitrate layer.
type H265VideoLayer struct { // Bitrate - The average bitrate in bits per second at which to encode the input video when generating this layer. For example: a target bitrate of 3000Kbps or 3Mbps means this value should be 3000000 This is a required field. Bitrate *int32 `json:"bitrate,omitempty"` // MaxBitrate - The maximum bitrate (in bits per second), at which the VBV buffer should be assumed to refill. If not specified, defaults to the same value as bitrate. MaxBitrate *int32 `json:"maxBitrate,omitempty"` // BFrames - The number of B-frames to be used when encoding this layer. If not specified, the encoder chooses an appropriate number based on the video profile and level. BFrames *int32 `json:"bFrames,omitempty"` // FrameRate - The frame rate (in frames per second) at which to encode this layer. The value can be in the form of M/N where M and N are integers (For example, 30000/1001), or in the form of a number (For example, 30, or 29.97). The encoder enforces constraints on allowed frame rates based on the profile and level. If it is not specified, the encoder will use the same frame rate as the input video. FrameRate *string `json:"frameRate,omitempty"` // Slices - The number of slices to be used when encoding this layer. If not specified, default is zero, which means that encoder will use a single slice for each frame. Slices *int32 `json:"slices,omitempty"` // AdaptiveBFrame - Specifies whether or not adaptive B-frames are to be used when encoding this layer. If not specified, the encoder will turn it on whenever the video profile permits its use. AdaptiveBFrame *bool `json:"adaptiveBFrame,omitempty"` // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (hvl H265VideoLayer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for H265VideoLayer.
func (hvl H265VideoLayer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for H265VideoLayer.
H265VideoProfile enumerates the values for h265 video profile.
type H265VideoProfile string
const ( // H265VideoProfileAuto Tells the encoder to automatically determine the appropriate H.265 profile. H265VideoProfileAuto H265VideoProfile = "Auto" // H265VideoProfileMain Main profile // (https://x265.readthedocs.io/en/default/cli.html?highlight=profile#profile-level-tier) H265VideoProfileMain H265VideoProfile = "Main" )
func PossibleH265VideoProfileValues() []H265VideoProfile
PossibleH265VideoProfileValues returns an array of possible values for the H265VideoProfile const type.
Hls HTTP Live Streaming (HLS) packing setting for the live output.
type Hls struct { // FragmentsPerTsSegment - The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output. FragmentsPerTsSegment *int32 `json:"fragmentsPerTsSegment,omitempty"` }
IPAccessControl the IP access control.
type IPAccessControl struct { // Allow - The IP allow list. Allow *[]IPRange `json:"allow,omitempty"` }
IPRange the IP address range in the CIDR scheme.
type IPRange struct { // Name - The friendly name for the IP address range. Name *string `json:"name,omitempty"` // Address - The IP address. Address *string `json:"address,omitempty"` // SubnetPrefixLength - The subnet mask prefix length (see CIDR notation). SubnetPrefixLength *int32 `json:"subnetPrefixLength,omitempty"` }
Image describes the basic properties for generating thumbnails from the input video
type Image struct { // Start - The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, PT05S to start at 5 seconds), or a frame count (For example, 10 to start at the 10th frame), or a relative value to stream duration (For example, 10% to start at 10% of stream duration). Also supports a macro {Best}, which tells the encoder to select the best thumbnail from the first few seconds of the video and will only produce one thumbnail, no matter what other settings are for Step and Range. The default value is macro {Best}. Start *string `json:"start,omitempty"` // Step - The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, PT05S for one image every 5 seconds), or a frame count (For example, 30 for one image every 30 frames), or a relative value to stream duration (For example, 10% for one image every 10% of stream duration). Note: Step value will affect the first generated thumbnail, which may not be exactly the one specified at transform preset start time. This is due to the encoder, which tries to select the best thumbnail between start time and Step position from start time as the first output. As the default value is 10%, it means if stream has long duration, the first generated thumbnail might be far away from the one specified at start time. Try to select reasonable value for Step if the first thumbnail is expected close to start time, or set Range value at 1 if only one thumbnail is needed at start time. Step *string `json:"step,omitempty"` // Range - The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, PT5M30S to stop at 5 minutes and 30 seconds from start time), or a frame count (For example, 300 to stop at the 300th frame from the frame at start time. If this value is 1, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, 50% to stop at half of stream duration from start time). The default value is 100%, which means to stop at the end of the stream. Range *string `json:"range,omitempty"` // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (i Image) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for Image.
func (i Image) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for Image.
func (i Image) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for Image.
func (i Image) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for Image.
func (i Image) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for Image.
func (i Image) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for Image.
func (i Image) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for Image.
func (i Image) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for Image.
func (i Image) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for Image.
func (i Image) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for Image.
func (i Image) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for Image.
func (i Image) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for Image.
func (i Image) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for Image.
func (i Image) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for Image.
func (i Image) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for Image.
func (i Image) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Image.
ImageFormat describes the properties for an output image file.
type ImageFormat struct { // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (ifVar ImageFormat) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for ImageFormat.
func (ifVar ImageFormat) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ImageFormat.
InputDefinition base class for defining an input. Use sub classes of this class to specify tracks selections and related metadata.
type InputDefinition struct { // IncludedTracks - The list of TrackDescriptors which define the metadata and selection of tracks in the input. IncludedTracks *[]BasicTrackDescriptor `json:"includedTracks,omitempty"` // OdataType - Possible values include: 'OdataTypeInputDefinition', 'OdataTypeMicrosoftMediaFromAllInputFile', 'OdataTypeMicrosoftMediaFromEachInputFile', 'OdataTypeMicrosoftMediaInputFile' OdataType OdataTypeBasicInputDefinition `json:"@odata.type,omitempty"` }
func (ID InputDefinition) AsBasicInputDefinition() (BasicInputDefinition, bool)
AsBasicInputDefinition is the BasicInputDefinition implementation for InputDefinition.
func (ID InputDefinition) AsFromAllInputFile() (*FromAllInputFile, bool)
AsFromAllInputFile is the BasicInputDefinition implementation for InputDefinition.
func (ID InputDefinition) AsFromEachInputFile() (*FromEachInputFile, bool)
AsFromEachInputFile is the BasicInputDefinition implementation for InputDefinition.
func (ID InputDefinition) AsInputDefinition() (*InputDefinition, bool)
AsInputDefinition is the BasicInputDefinition implementation for InputDefinition.
func (ID InputDefinition) AsInputFile() (*InputFile, bool)
AsInputFile is the BasicInputDefinition implementation for InputDefinition.
func (ID InputDefinition) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for InputDefinition.
func (ID *InputDefinition) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for InputDefinition struct.
InputFile an InputDefinition for a single file. TrackSelections are scoped to the file specified.
type InputFile struct { // Filename - Name of the file that this input definition applies to. Filename *string `json:"filename,omitempty"` // IncludedTracks - The list of TrackDescriptors which define the metadata and selection of tracks in the input. IncludedTracks *[]BasicTrackDescriptor `json:"includedTracks,omitempty"` // OdataType - Possible values include: 'OdataTypeInputDefinition', 'OdataTypeMicrosoftMediaFromAllInputFile', 'OdataTypeMicrosoftMediaFromEachInputFile', 'OdataTypeMicrosoftMediaInputFile' OdataType OdataTypeBasicInputDefinition `json:"@odata.type,omitempty"` }
func (ifVar InputFile) AsBasicInputDefinition() (BasicInputDefinition, bool)
AsBasicInputDefinition is the BasicInputDefinition implementation for InputFile.
func (ifVar InputFile) AsFromAllInputFile() (*FromAllInputFile, bool)
AsFromAllInputFile is the BasicInputDefinition implementation for InputFile.
func (ifVar InputFile) AsFromEachInputFile() (*FromEachInputFile, bool)
AsFromEachInputFile is the BasicInputDefinition implementation for InputFile.
func (ifVar InputFile) AsInputDefinition() (*InputDefinition, bool)
AsInputDefinition is the BasicInputDefinition implementation for InputFile.
func (ifVar InputFile) AsInputFile() (*InputFile, bool)
AsInputFile is the BasicInputDefinition implementation for InputFile.
func (ifVar InputFile) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for InputFile.
func (ifVar *InputFile) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for InputFile struct.
InsightsType enumerates the values for insights type.
type InsightsType string
const ( // AllInsights Generate both audio and video insights. Fails if either audio or video Insights fail. AllInsights InsightsType = "AllInsights" // AudioInsightsOnly Generate audio only insights. Ignore video even if present. Fails if no audio is // present. AudioInsightsOnly InsightsType = "AudioInsightsOnly" // VideoInsightsOnly Generate video only insights. Ignore audio if present. Fails if no video is present. VideoInsightsOnly InsightsType = "VideoInsightsOnly" )
func PossibleInsightsTypeValues() []InsightsType
PossibleInsightsTypeValues returns an array of possible values for the InsightsType const type.
Job a Job resource type. The progress and state can be obtained by polling a Job or subscribing to events using EventGrid.
type Job struct { autorest.Response `json:"-"` // JobProperties - The resource properties. *JobProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (j Job) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Job.
func (j *Job) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for Job struct.
JobCollection a collection of Job items.
type JobCollection struct { autorest.Response `json:"-"` // Value - A collection of Job items. Value *[]Job `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (jc JobCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
JobCollectionIterator provides access to a complete listing of Job values.
type JobCollectionIterator struct {
// contains filtered or unexported fields
}
func NewJobCollectionIterator(page JobCollectionPage) JobCollectionIterator
Creates a new instance of the JobCollectionIterator type.
func (iter *JobCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *JobCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter JobCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter JobCollectionIterator) Response() JobCollection
Response returns the raw server response from the last page request.
func (iter JobCollectionIterator) Value() Job
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
JobCollectionPage contains a page of Job values.
type JobCollectionPage struct {
// contains filtered or unexported fields
}
func NewJobCollectionPage(cur JobCollection, getNextPage func(context.Context, JobCollection) (JobCollection, error)) JobCollectionPage
Creates a new instance of the JobCollectionPage type.
func (page *JobCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *JobCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page JobCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page JobCollectionPage) Response() JobCollection
Response returns the raw server response from the last page request.
func (page JobCollectionPage) Values() []Job
Values returns the slice of values for the current page or nil if there are no values.
JobError details of JobOutput errors.
type JobError struct { // Code - READ-ONLY; Error code describing the error. Possible values include: 'ServiceError', 'ServiceTransientError', 'DownloadNotAccessible', 'DownloadTransientError', 'UploadNotAccessible', 'UploadTransientError', 'ConfigurationUnsupported', 'ContentMalformed', 'ContentUnsupported' Code JobErrorCode `json:"code,omitempty"` // Message - READ-ONLY; A human-readable language-dependent representation of the error. Message *string `json:"message,omitempty"` // Category - READ-ONLY; Helps with categorization of errors. Possible values include: 'JobErrorCategoryService', 'JobErrorCategoryDownload', 'JobErrorCategoryUpload', 'JobErrorCategoryConfiguration', 'JobErrorCategoryContent' Category JobErrorCategory `json:"category,omitempty"` // Retry - READ-ONLY; Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal. Possible values include: 'DoNotRetry', 'MayRetry' Retry JobRetry `json:"retry,omitempty"` // Details - READ-ONLY; An array of details about specific errors that led to this reported error. Details *[]JobErrorDetail `json:"details,omitempty"` }
func (je JobError) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobError.
JobErrorCategory enumerates the values for job error category.
type JobErrorCategory string
const ( // JobErrorCategoryConfiguration The error is configuration related. JobErrorCategoryConfiguration JobErrorCategory = "Configuration" // JobErrorCategoryContent The error is related to data in the input files. JobErrorCategoryContent JobErrorCategory = "Content" // JobErrorCategoryDownload The error is download related. JobErrorCategoryDownload JobErrorCategory = "Download" // JobErrorCategoryService The error is service related. JobErrorCategoryService JobErrorCategory = "Service" // JobErrorCategoryUpload The error is upload related. JobErrorCategoryUpload JobErrorCategory = "Upload" )
func PossibleJobErrorCategoryValues() []JobErrorCategory
PossibleJobErrorCategoryValues returns an array of possible values for the JobErrorCategory const type.
JobErrorCode enumerates the values for job error code.
type JobErrorCode string
const ( // ConfigurationUnsupported There was a problem with the combination of input files and the configuration // settings applied, fix the configuration settings and retry with the same input, or change input to match // the configuration. ConfigurationUnsupported JobErrorCode = "ConfigurationUnsupported" // ContentMalformed There was a problem with the input content (for example: zero byte files, or // corrupt/non-decodable files), check the input files. ContentMalformed JobErrorCode = "ContentMalformed" // ContentUnsupported There was a problem with the format of the input (not valid media file, or an // unsupported file/codec), check the validity of the input files. ContentUnsupported JobErrorCode = "ContentUnsupported" // DownloadNotAccessible While trying to download the input files, the files were not accessible, please // check the availability of the source. DownloadNotAccessible JobErrorCode = "DownloadNotAccessible" // DownloadTransientError While trying to download the input files, there was an issue during transfer // (storage service, network errors), see details and check your source. DownloadTransientError JobErrorCode = "DownloadTransientError" // ServiceError Fatal service error, please contact support. ServiceError JobErrorCode = "ServiceError" // ServiceTransientError Transient error, please retry, if retry is unsuccessful, please contact support. ServiceTransientError JobErrorCode = "ServiceTransientError" // UploadNotAccessible While trying to upload the output files, the destination was not reachable, please // check the availability of the destination. UploadNotAccessible JobErrorCode = "UploadNotAccessible" // UploadTransientError While trying to upload the output files, there was an issue during transfer // (storage service, network errors), see details and check your destination. UploadTransientError JobErrorCode = "UploadTransientError" )
func PossibleJobErrorCodeValues() []JobErrorCode
PossibleJobErrorCodeValues returns an array of possible values for the JobErrorCode const type.
JobErrorDetail details of JobOutput errors.
type JobErrorDetail struct { // Code - READ-ONLY; Code describing the error detail. Code *string `json:"code,omitempty"` // Message - READ-ONLY; A human-readable representation of the error. Message *string `json:"message,omitempty"` }
func (jed JobErrorDetail) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobErrorDetail.
JobInput base class for inputs to a Job.
type JobInput struct { // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (ji JobInput) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInput.
func (ji JobInput) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInput.
func (ji JobInput) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInput.
JobInputAsset represents an Asset for input into a Job.
type JobInputAsset struct { // AssetName - The name of the input Asset. AssetName *string `json:"assetName,omitempty"` // Files - List of files. Required for JobInputHttp. Maximum of 4000 characters each. Files *[]string `json:"files,omitempty"` // Start - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media. Start BasicClipTime `json:"start,omitempty"` // End - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media. End BasicClipTime `json:"end,omitempty"` // Label - A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'. Label *string `json:"label,omitempty"` // InputDefinitions - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata. InputDefinitions *[]BasicInputDefinition `json:"inputDefinitions,omitempty"` // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (jia JobInputAsset) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInputAsset.
func (jia JobInputAsset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInputAsset.
func (jia *JobInputAsset) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobInputAsset struct.
JobInputClip represents input files for a Job.
type JobInputClip struct { // Files - List of files. Required for JobInputHttp. Maximum of 4000 characters each. Files *[]string `json:"files,omitempty"` // Start - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media. Start BasicClipTime `json:"start,omitempty"` // End - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media. End BasicClipTime `json:"end,omitempty"` // Label - A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'. Label *string `json:"label,omitempty"` // InputDefinitions - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata. InputDefinitions *[]BasicInputDefinition `json:"inputDefinitions,omitempty"` // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (jic JobInputClip) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInputClip.
func (jic JobInputClip) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInputClip.
func (jic *JobInputClip) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobInputClip struct.
JobInputHTTP represents HTTPS job input.
type JobInputHTTP struct { // BaseURI - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters. BaseURI *string `json:"baseUri,omitempty"` // Files - List of files. Required for JobInputHttp. Maximum of 4000 characters each. Files *[]string `json:"files,omitempty"` // Start - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media. Start BasicClipTime `json:"start,omitempty"` // End - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media. End BasicClipTime `json:"end,omitempty"` // Label - A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'. Label *string `json:"label,omitempty"` // InputDefinitions - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata. InputDefinitions *[]BasicInputDefinition `json:"inputDefinitions,omitempty"` // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (jih JobInputHTTP) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInputHTTP.
func (jih JobInputHTTP) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInputHTTP.
func (jih *JobInputHTTP) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobInputHTTP struct.
JobInputSequence a Sequence contains an ordered list of Clips where each clip is a JobInput. The Sequence will be treated as a single input.
type JobInputSequence struct { // Inputs - JobInputs that make up the timeline. Inputs *[]BasicJobInputClip `json:"inputs,omitempty"` // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (jis JobInputSequence) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInputSequence.
func (jis JobInputSequence) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInputSequence.
func (jis *JobInputSequence) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobInputSequence struct.
JobInputs describes a list of inputs to a Job.
type JobInputs struct { // Inputs - List of inputs to a Job. Inputs *[]BasicJobInput `json:"inputs,omitempty"` // OdataType - Possible values include: 'OdataTypeJobInput', 'OdataTypeMicrosoftMediaJobInputClip', 'OdataTypeMicrosoftMediaJobInputs', 'OdataTypeMicrosoftMediaJobInputAsset', 'OdataTypeMicrosoftMediaJobInputHTTP', 'OdataTypeMicrosoftMediaJobInputSequence' OdataType OdataTypeBasicJobInput `json:"@odata.type,omitempty"` }
func (ji JobInputs) AsBasicJobInput() (BasicJobInput, bool)
AsBasicJobInput is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsBasicJobInputClip() (BasicJobInputClip, bool)
AsBasicJobInputClip is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInput() (*JobInput, bool)
AsJobInput is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInputAsset() (*JobInputAsset, bool)
AsJobInputAsset is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInputClip() (*JobInputClip, bool)
AsJobInputClip is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInputHTTP() (*JobInputHTTP, bool)
AsJobInputHTTP is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInputSequence() (*JobInputSequence, bool)
AsJobInputSequence is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) AsJobInputs() (*JobInputs, bool)
AsJobInputs is the BasicJobInput implementation for JobInputs.
func (ji JobInputs) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobInputs.
func (ji *JobInputs) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobInputs struct.
JobOutput describes all the properties of a JobOutput.
type JobOutput struct { // Error - READ-ONLY; If the JobOutput is in the Error state, it contains the details of the error. Error *JobError `json:"error,omitempty"` // State - READ-ONLY; Describes the state of the JobOutput. Possible values include: 'Canceled', 'Canceling', 'Error', 'Finished', 'Processing', 'Queued', 'Scheduled' State JobState `json:"state,omitempty"` // Progress - READ-ONLY; If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property. Progress *int32 `json:"progress,omitempty"` // Label - A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform. Label *string `json:"label,omitempty"` // StartTime - READ-ONLY; The UTC date and time at which this Job Output began processing. StartTime *date.Time `json:"startTime,omitempty"` // EndTime - READ-ONLY; The UTC date and time at which this Job Output finished processing. EndTime *date.Time `json:"endTime,omitempty"` // OdataType - Possible values include: 'OdataTypeJobOutput', 'OdataTypeMicrosoftMediaJobOutputAsset' OdataType OdataTypeBasicJobOutput `json:"@odata.type,omitempty"` }
func (jo JobOutput) AsBasicJobOutput() (BasicJobOutput, bool)
AsBasicJobOutput is the BasicJobOutput implementation for JobOutput.
func (jo JobOutput) AsJobOutput() (*JobOutput, bool)
AsJobOutput is the BasicJobOutput implementation for JobOutput.
func (jo JobOutput) AsJobOutputAsset() (*JobOutputAsset, bool)
AsJobOutputAsset is the BasicJobOutput implementation for JobOutput.
func (jo JobOutput) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobOutput.
JobOutputAsset represents an Asset used as a JobOutput.
type JobOutputAsset struct { // AssetName - The name of the output Asset. AssetName *string `json:"assetName,omitempty"` // Error - READ-ONLY; If the JobOutput is in the Error state, it contains the details of the error. Error *JobError `json:"error,omitempty"` // State - READ-ONLY; Describes the state of the JobOutput. Possible values include: 'Canceled', 'Canceling', 'Error', 'Finished', 'Processing', 'Queued', 'Scheduled' State JobState `json:"state,omitempty"` // Progress - READ-ONLY; If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property. Progress *int32 `json:"progress,omitempty"` // Label - A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform. Label *string `json:"label,omitempty"` // StartTime - READ-ONLY; The UTC date and time at which this Job Output began processing. StartTime *date.Time `json:"startTime,omitempty"` // EndTime - READ-ONLY; The UTC date and time at which this Job Output finished processing. EndTime *date.Time `json:"endTime,omitempty"` // OdataType - Possible values include: 'OdataTypeJobOutput', 'OdataTypeMicrosoftMediaJobOutputAsset' OdataType OdataTypeBasicJobOutput `json:"@odata.type,omitempty"` }
func (joa JobOutputAsset) AsBasicJobOutput() (BasicJobOutput, bool)
AsBasicJobOutput is the BasicJobOutput implementation for JobOutputAsset.
func (joa JobOutputAsset) AsJobOutput() (*JobOutput, bool)
AsJobOutput is the BasicJobOutput implementation for JobOutputAsset.
func (joa JobOutputAsset) AsJobOutputAsset() (*JobOutputAsset, bool)
AsJobOutputAsset is the BasicJobOutput implementation for JobOutputAsset.
func (joa JobOutputAsset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobOutputAsset.
JobProperties properties of the Job.
type JobProperties struct { // Created - READ-ONLY; The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format. Created *date.Time `json:"created,omitempty"` // State - READ-ONLY; The current state of the job. Possible values include: 'Canceled', 'Canceling', 'Error', 'Finished', 'Processing', 'Queued', 'Scheduled' State JobState `json:"state,omitempty"` // Description - Optional customer supplied description of the Job. Description *string `json:"description,omitempty"` // Input - The inputs for the Job. Input BasicJobInput `json:"input,omitempty"` // LastModified - READ-ONLY; The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format. LastModified *date.Time `json:"lastModified,omitempty"` // Outputs - The outputs for the Job. Outputs *[]BasicJobOutput `json:"outputs,omitempty"` // Priority - Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal. Possible values include: 'PriorityLow', 'PriorityNormal', 'PriorityHigh' Priority Priority `json:"priority,omitempty"` // CorrelationData - Customer provided key, value pairs that will be returned in Job and JobOutput state events. CorrelationData map[string]*string `json:"correlationData"` // StartTime - READ-ONLY; The UTC date and time at which this Job began processing. StartTime *date.Time `json:"startTime,omitempty"` // EndTime - READ-ONLY; The UTC date and time at which this Job finished processing. EndTime *date.Time `json:"endTime,omitempty"` }
func (jp JobProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JobProperties.
func (jp *JobProperties) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for JobProperties struct.
JobRetry enumerates the values for job retry.
type JobRetry string
const ( // DoNotRetry Issue needs to be investigated and then the job resubmitted with corrections or retried once // the underlying issue has been corrected. DoNotRetry JobRetry = "DoNotRetry" // MayRetry Issue may be resolved after waiting for a period of time and resubmitting the same Job. MayRetry JobRetry = "MayRetry" )
func PossibleJobRetryValues() []JobRetry
PossibleJobRetryValues returns an array of possible values for the JobRetry const type.
JobState enumerates the values for job state.
type JobState string
const ( // Canceled The job was canceled. This is a final state for the job. Canceled JobState = "Canceled" // Canceling The job is in the process of being canceled. This is a transient state for the job. Canceling JobState = "Canceling" // Error The job has encountered an error. This is a final state for the job. Error JobState = "Error" // Finished The job is finished. This is a final state for the job. Finished JobState = "Finished" // Processing The job is processing. This is a transient state for the job. Processing JobState = "Processing" // Queued The job is in a queued state, waiting for resources to become available. This is a transient // state. Queued JobState = "Queued" // Scheduled The job is being scheduled to run on an available resource. This is a transient state, between // queued and processing states. Scheduled JobState = "Scheduled" )
func PossibleJobStateValues() []JobState
PossibleJobStateValues returns an array of possible values for the JobState const type.
JobsClient is the client for the Jobs methods of the Media service.
type JobsClient struct { BaseClient }
func NewJobsClient(subscriptionID string) JobsClient
NewJobsClient creates an instance of the JobsClient client.
func NewJobsClientWithBaseURI(baseURI string, subscriptionID string) JobsClient
NewJobsClientWithBaseURI creates an instance of the JobsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client JobsClient) CancelJob(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (result autorest.Response, err error)
CancelJob cancel a Job. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. jobName - the Job name.
func (client JobsClient) CancelJobPreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (*http.Request, error)
CancelJobPreparer prepares the CancelJob request.
func (client JobsClient) CancelJobResponder(resp *http.Response) (result autorest.Response, err error)
CancelJobResponder handles the response to the CancelJob request. The method always closes the http.Response Body.
func (client JobsClient) CancelJobSender(req *http.Request) (*http.Response, error)
CancelJobSender sends the CancelJob request. The method will close the http.Response Body if it receives an error.
func (client JobsClient) Create(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string, parameters Job) (result Job, err error)
Create creates a Job. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. jobName - the Job name. parameters - the request parameters
func (client JobsClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string, parameters Job) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client JobsClient) CreateResponder(resp *http.Response) (result Job, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client JobsClient) CreateSender(req *http.Request) (*http.Response, error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client JobsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (result autorest.Response, err error)
Delete deletes a Job. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. jobName - the Job name.
func (client JobsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client JobsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client JobsClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client JobsClient) Get(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (result Job, err error)
Get gets a Job. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. jobName - the Job name.
func (client JobsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client JobsClient) GetResponder(resp *http.Response) (result Job, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client JobsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client JobsClient) List(ctx context.Context, resourceGroupName string, accountName string, transformName string, filter string, orderby string) (result JobCollectionPage, err error)
List lists all of the Jobs for the Transform. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. filter - restricts the set of items returned. orderby - specifies the key by which the result collection should be ordered.
func (client JobsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, transformName string, filter string, orderby string) (result JobCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client JobsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, filter string, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client JobsClient) ListResponder(resp *http.Response) (result JobCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client JobsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client JobsClient) Update(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string, parameters Job) (result Job, err error)
Update update is only supported for description and priority. Updating Priority will take effect when the Job state is Queued or Scheduled and depending on the timing the priority update may be ignored. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. jobName - the Job name. parameters - the request parameters
func (client JobsClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, jobName string, parameters Job) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client JobsClient) UpdateResponder(resp *http.Response) (result Job, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client JobsClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
JpgFormat describes the settings for producing JPEG thumbnails.
type JpgFormat struct { // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (jf JpgFormat) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for JpgFormat.
func (jf JpgFormat) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JpgFormat.
JpgImage describes the properties for producing a series of JPEG images from the input video.
type JpgImage struct { // Layers - A collection of output JPEG image layers to be produced by the encoder. Layers *[]JpgLayer `json:"layers,omitempty"` // SpriteColumn - Sets the number of columns used in thumbnail sprite image. The number of rows are automatically calculated and a VTT file is generated with the coordinate mappings for each thumbnail in the sprite. Note: this value should be a positive integer and a proper value is recommended so that the output image resolution will not go beyond JPEG maximum pixel resolution limit 65535x65535. SpriteColumn *int32 `json:"spriteColumn,omitempty"` // Start - The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, PT05S to start at 5 seconds), or a frame count (For example, 10 to start at the 10th frame), or a relative value to stream duration (For example, 10% to start at 10% of stream duration). Also supports a macro {Best}, which tells the encoder to select the best thumbnail from the first few seconds of the video and will only produce one thumbnail, no matter what other settings are for Step and Range. The default value is macro {Best}. Start *string `json:"start,omitempty"` // Step - The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, PT05S for one image every 5 seconds), or a frame count (For example, 30 for one image every 30 frames), or a relative value to stream duration (For example, 10% for one image every 10% of stream duration). Note: Step value will affect the first generated thumbnail, which may not be exactly the one specified at transform preset start time. This is due to the encoder, which tries to select the best thumbnail between start time and Step position from start time as the first output. As the default value is 10%, it means if stream has long duration, the first generated thumbnail might be far away from the one specified at start time. Try to select reasonable value for Step if the first thumbnail is expected close to start time, or set Range value at 1 if only one thumbnail is needed at start time. Step *string `json:"step,omitempty"` // Range - The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, PT5M30S to stop at 5 minutes and 30 seconds from start time), or a frame count (For example, 300 to stop at the 300th frame from the frame at start time. If this value is 1, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, 50% to stop at half of stream duration from start time). The default value is 100%, which means to stop at the end of the stream. Range *string `json:"range,omitempty"` // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (ji JpgImage) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for JpgImage.
func (ji JpgImage) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for JpgImage.
func (ji JpgImage) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JpgImage.
JpgLayer describes the settings to produce a JPEG image from the input video.
type JpgLayer struct { // Quality - The compression quality of the JPEG output. Range is from 0-100 and the default is 70. Quality *int32 `json:"quality,omitempty"` // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (jl JpgLayer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for JpgLayer.
func (jl JpgLayer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for JpgLayer.
KeyVaultProperties ...
type KeyVaultProperties struct { // KeyIdentifier - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey). KeyIdentifier *string `json:"keyIdentifier,omitempty"` // CurrentKeyIdentifier - READ-ONLY; The current key used to encrypt the Media Services account, including the key version. CurrentKeyIdentifier *string `json:"currentKeyIdentifier,omitempty"` }
func (kvp KeyVaultProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for KeyVaultProperties.
Layer the encoder can be configured to produce video and/or images (thumbnails) at different resolutions, by specifying a layer for each desired resolution. A layer represents the properties for the video or image at a resolution.
type Layer struct { // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (l Layer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for Layer.
func (l Layer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for Layer.
func (l Layer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for Layer.
func (l Layer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for Layer.
func (l Layer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for Layer.
func (l Layer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for Layer.
func (l Layer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for Layer.
func (l Layer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for Layer.
func (l Layer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for Layer.
func (l Layer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for Layer.
func (l Layer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Layer.
ListContainerSasInput the parameters to the list SAS request.
type ListContainerSasInput struct { // Permissions - The permissions to set on the SAS URL. Possible values include: 'Read', 'ReadWrite', 'ReadWriteDelete' Permissions AssetContainerPermission `json:"permissions,omitempty"` // ExpiryTime - The SAS URL expiration time. This must be less than 24 hours from the current time. ExpiryTime *date.Time `json:"expiryTime,omitempty"` }
ListContentKeysResponse class of response for listContentKeys action
type ListContentKeysResponse struct { autorest.Response `json:"-"` // ContentKeys - ContentKeys used by current Streaming Locator ContentKeys *[]StreamingLocatorContentKey `json:"contentKeys,omitempty"` }
ListEdgePoliciesInput ...
type ListEdgePoliciesInput struct { // DeviceID - Unique identifier of the edge device. DeviceID *string `json:"deviceId,omitempty"` }
ListPathsResponse class of response for listPaths action
type ListPathsResponse struct { autorest.Response `json:"-"` // StreamingPaths - Streaming Paths supported by current Streaming Locator StreamingPaths *[]StreamingPath `json:"streamingPaths,omitempty"` // DownloadPaths - Download Paths supported by current Streaming Locator DownloadPaths *[]string `json:"downloadPaths,omitempty"` }
ListStreamingLocatorsResponse the Streaming Locators associated with this Asset.
type ListStreamingLocatorsResponse struct { autorest.Response `json:"-"` // StreamingLocators - READ-ONLY; The list of Streaming Locators. StreamingLocators *[]AssetStreamingLocator `json:"streamingLocators,omitempty"` }
func (lslr ListStreamingLocatorsResponse) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ListStreamingLocatorsResponse.
LiveEvent the live event.
type LiveEvent struct { autorest.Response `json:"-"` // LiveEventProperties - The live event properties. *LiveEventProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // Tags - Resource tags. Tags map[string]*string `json:"tags"` // Location - The geo-location where the resource lives Location *string `json:"location,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (le LiveEvent) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for LiveEvent.
func (le *LiveEvent) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for LiveEvent struct.
LiveEventActionInput the LiveEvent action input parameter definition.
type LiveEventActionInput struct { // RemoveOutputsOnStop - The flag indicates whether live outputs are automatically deleted when live event is being stopped. Deleting live outputs do not delete the underlying assets. RemoveOutputsOnStop *bool `json:"removeOutputsOnStop,omitempty"` }
LiveEventEncoding specifies the live event type and optional encoding settings for encoding live events.
type LiveEventEncoding struct { // EncodingType - Live event type. When encodingType is set to None, the service simply passes through the incoming video and audio layer(s) to the output. When encodingType is set to Standard or Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot be modified after the live event is created. Possible values include: 'LiveEventEncodingTypeNone', 'LiveEventEncodingTypeStandard', 'LiveEventEncodingTypePremium1080p' EncodingType LiveEventEncodingType `json:"encodingType,omitempty"` // PresetName - The optional encoding preset name, used when encodingType is not None. This value is specified at creation time and cannot be updated. If the encodingType is set to Standard, then the default preset name is ‘Default720p’. Else if the encodingType is set to Premium1080p, the default preset is ‘Default1080p’. PresetName *string `json:"presetName,omitempty"` // StretchMode - Specifies how the input video will be resized to fit the desired output resolution(s). Default is None. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // KeyFrameInterval - Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audio tracks of an encoding live event. For example, use PT2S to indicate 2 seconds. For the video track it also defines the key frame interval, or the length of a GoP (group of pictures). If this value is not set for an encoding live event, the fragment duration defaults to 2 seconds. The value cannot be set for pass-through live events. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` }
LiveEventEncodingType enumerates the values for live event encoding type.
type LiveEventEncodingType string
const ( // LiveEventEncodingTypeNone A contribution live encoder sends a multiple bitrate stream. The ingested // stream passes through the live event without any further processing. It is also called the pass-through // mode. LiveEventEncodingTypeNone LiveEventEncodingType = "None" // LiveEventEncodingTypePremium1080p A contribution live encoder sends a single bitrate stream to the live // event and Media Services creates multiple bitrate streams. The output cannot exceed 1080p in resolution. LiveEventEncodingTypePremium1080p LiveEventEncodingType = "Premium1080p" // LiveEventEncodingTypeStandard A contribution live encoder sends a single bitrate stream to the live // event and Media Services creates multiple bitrate streams. The output cannot exceed 720p in resolution. LiveEventEncodingTypeStandard LiveEventEncodingType = "Standard" )
func PossibleLiveEventEncodingTypeValues() []LiveEventEncodingType
PossibleLiveEventEncodingTypeValues returns an array of possible values for the LiveEventEncodingType const type.
LiveEventEndpoint the live event endpoint.
type LiveEventEndpoint struct { // Protocol - The endpoint protocol. Protocol *string `json:"protocol,omitempty"` // URL - The endpoint URL. URL *string `json:"url,omitempty"` }
LiveEventInput the live event input.
type LiveEventInput struct { // StreamingProtocol - The input protocol for the live event. This is specified at creation time and cannot be updated. Possible values include: 'FragmentedMP4', 'RTMP' StreamingProtocol LiveEventInputProtocol `json:"streamingProtocol,omitempty"` // AccessControl - Access control for live event input. AccessControl *LiveEventInputAccessControl `json:"accessControl,omitempty"` // KeyFrameIntervalDuration - ISO 8601 time duration of the key frame interval duration of the input. This value sets the EXT-X-TARGETDURATION property in the HLS output. For example, use PT2S to indicate 2 seconds. Leave the value empty for encoding live events. KeyFrameIntervalDuration *string `json:"keyFrameIntervalDuration,omitempty"` // AccessToken - A UUID in string form to uniquely identify the stream. This can be specified at creation time but cannot be updated. If omitted, the service will generate a unique value. AccessToken *string `json:"accessToken,omitempty"` // Endpoints - The input endpoints for the live event. Endpoints *[]LiveEventEndpoint `json:"endpoints,omitempty"` }
LiveEventInputAccessControl the IP access control for live event input.
type LiveEventInputAccessControl struct { // IP - The IP access control properties. IP *IPAccessControl `json:"ip,omitempty"` }
LiveEventInputProtocol enumerates the values for live event input protocol.
type LiveEventInputProtocol string
const ( // FragmentedMP4 Smooth Streaming input will be sent by the contribution encoder to the live event. FragmentedMP4 LiveEventInputProtocol = "FragmentedMP4" // RTMP RTMP input will be sent by the contribution encoder to the live event. RTMP LiveEventInputProtocol = "RTMP" )
func PossibleLiveEventInputProtocolValues() []LiveEventInputProtocol
PossibleLiveEventInputProtocolValues returns an array of possible values for the LiveEventInputProtocol const type.
LiveEventInputTrackSelection a track selection condition. This property is reserved for future use, any value set on this property will be ignored.
type LiveEventInputTrackSelection struct { // Property - Property name to select. This property is reserved for future use, any value set on this property will be ignored. Property *string `json:"property,omitempty"` // Operation - Comparing operation. This property is reserved for future use, any value set on this property will be ignored. Operation *string `json:"operation,omitempty"` // Value - Property value to select. This property is reserved for future use, any value set on this property will be ignored. Value *string `json:"value,omitempty"` }
LiveEventListResult the LiveEvent list result.
type LiveEventListResult struct { autorest.Response `json:"-"` // Value - The result of the List Live Event operation. Value *[]LiveEvent `json:"value,omitempty"` // OdataCount - The number of result. OdataCount *int32 `json:"@odata.count,omitempty"` // OdataNextLink - The link to the next set of results. Not empty if value contains incomplete list of live outputs. OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (lelr LiveEventListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
LiveEventListResultIterator provides access to a complete listing of LiveEvent values.
type LiveEventListResultIterator struct {
// contains filtered or unexported fields
}
func NewLiveEventListResultIterator(page LiveEventListResultPage) LiveEventListResultIterator
Creates a new instance of the LiveEventListResultIterator type.
func (iter *LiveEventListResultIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *LiveEventListResultIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter LiveEventListResultIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter LiveEventListResultIterator) Response() LiveEventListResult
Response returns the raw server response from the last page request.
func (iter LiveEventListResultIterator) Value() LiveEvent
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
LiveEventListResultPage contains a page of LiveEvent values.
type LiveEventListResultPage struct {
// contains filtered or unexported fields
}
func NewLiveEventListResultPage(cur LiveEventListResult, getNextPage func(context.Context, LiveEventListResult) (LiveEventListResult, error)) LiveEventListResultPage
Creates a new instance of the LiveEventListResultPage type.
func (page *LiveEventListResultPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *LiveEventListResultPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page LiveEventListResultPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page LiveEventListResultPage) Response() LiveEventListResult
Response returns the raw server response from the last page request.
func (page LiveEventListResultPage) Values() []LiveEvent
Values returns the slice of values for the current page or nil if there are no values.
LiveEventOutputTranscriptionTrack describes a transcription track in the output of a live event, generated using speech-to-text transcription. This property is reserved for future use, any value set on this property will be ignored.
type LiveEventOutputTranscriptionTrack struct { // TrackName - The output track name. This property is reserved for future use, any value set on this property will be ignored. TrackName *string `json:"trackName,omitempty"` }
LiveEventPreview live event preview settings.
type LiveEventPreview struct { // Endpoints - The endpoints for preview. Do not share the preview URL with the live event audience. Endpoints *[]LiveEventEndpoint `json:"endpoints,omitempty"` // AccessControl - The access control for live event preview. AccessControl *LiveEventPreviewAccessControl `json:"accessControl,omitempty"` // PreviewLocator - The identifier of the preview locator in Guid format. Specifying this at creation time allows the caller to know the preview locator url before the event is created. If omitted, the service will generate a random identifier. This value cannot be updated once the live event is created. PreviewLocator *string `json:"previewLocator,omitempty"` // StreamingPolicyName - The name of streaming policy used for the live event preview. This value is specified at creation time and cannot be updated. StreamingPolicyName *string `json:"streamingPolicyName,omitempty"` // AlternativeMediaID - An alternative media identifier associated with the streaming locator created for the preview. This value is specified at creation time and cannot be updated. The identifier can be used in the CustomLicenseAcquisitionUrlTemplate or the CustomKeyAcquisitionUrlTemplate of the StreamingPolicy specified in the StreamingPolicyName field. AlternativeMediaID *string `json:"alternativeMediaId,omitempty"` }
LiveEventPreviewAccessControl the IP access control for the live event preview endpoint.
type LiveEventPreviewAccessControl struct { // IP - The IP access control properties. IP *IPAccessControl `json:"ip,omitempty"` }
LiveEventProperties the live event properties.
type LiveEventProperties struct { // Description - A description for the live event. Description *string `json:"description,omitempty"` // Input - Live event input settings. It defines how the live event receives input from a contribution encoder. Input *LiveEventInput `json:"input,omitempty"` // Preview - Live event preview settings. Preview allows live event producers to preview the live streaming content without creating any live output. Preview *LiveEventPreview `json:"preview,omitempty"` // Encoding - Encoding settings for the live event. It configures whether a live encoder is used for the live event and settings for the live encoder if it is used. Encoding *LiveEventEncoding `json:"encoding,omitempty"` // Transcriptions - Live transcription settings for the live event. See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature. Transcriptions *[]LiveEventTranscription `json:"transcriptions,omitempty"` // ProvisioningState - READ-ONLY; The provisioning state of the live event. ProvisioningState *string `json:"provisioningState,omitempty"` // ResourceState - READ-ONLY; The resource state of the live event. See https://go.microsoft.com/fwlink/?linkid=2139012 for more information. Possible values include: 'Stopped', 'Allocating', 'StandBy', 'Starting', 'Running', 'Stopping', 'Deleting' ResourceState LiveEventResourceState `json:"resourceState,omitempty"` // CrossSiteAccessPolicies - Live event cross site access policies. CrossSiteAccessPolicies *CrossSiteAccessPolicies `json:"crossSiteAccessPolicies,omitempty"` // UseStaticHostname - Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state UseStaticHostname *bool `json:"useStaticHostname,omitempty"` // HostnamePrefix - When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center. HostnamePrefix *string `json:"hostnamePrefix,omitempty"` // StreamOptions - The options to use for the LiveEvent. This value is specified at creation time and cannot be updated. The valid values for the array entry values are 'Default' and 'LowLatency'. StreamOptions *[]StreamOptionsFlag `json:"streamOptions,omitempty"` // Created - READ-ONLY; The creation time for the live event Created *date.Time `json:"created,omitempty"` // LastModified - READ-ONLY; The last modified time of the live event. LastModified *date.Time `json:"lastModified,omitempty"` }
func (lep LiveEventProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for LiveEventProperties.
LiveEventResourceState enumerates the values for live event resource state.
type LiveEventResourceState string
const ( // Allocating Allocate action was called on the live event and resources are being provisioned for this // live event. Once allocation completes successfully, the live event will transition to StandBy state. Allocating LiveEventResourceState = "Allocating" // Deleting The live event is being deleted. No billing occurs in this transient state. Updates or // streaming are not allowed during this state. Deleting LiveEventResourceState = "Deleting" // Running The live event resources have been allocated, ingest and preview URLs have been generated, and // it is capable of receiving live streams. At this point, billing is active. You must explicitly call Stop // on the live event resource to halt further billing. Running LiveEventResourceState = "Running" // StandBy Live event resources have been provisioned and is ready to start. Billing occurs in this state. // Most properties can still be updated, however ingest or streaming is not allowed during this state. StandBy LiveEventResourceState = "StandBy" // Starting The live event is being started and resources are being allocated. No billing occurs in this // state. Updates or streaming are not allowed during this state. If an error occurs, the live event // returns to the Stopped state. Starting LiveEventResourceState = "Starting" // Stopped This is the initial state of the live event after creation (unless autostart was set to true.) // No billing occurs in this state. In this state, the live event properties can be updated but streaming // is not allowed. Stopped LiveEventResourceState = "Stopped" // Stopping The live event is being stopped and resources are being de-provisioned. No billing occurs in // this transient state. Updates or streaming are not allowed during this state. Stopping LiveEventResourceState = "Stopping" )
func PossibleLiveEventResourceStateValues() []LiveEventResourceState
PossibleLiveEventResourceStateValues returns an array of possible values for the LiveEventResourceState const type.
LiveEventTranscription describes the transcription tracks in the output of a live event, generated using speech-to-text transcription. This property is reserved for future use, any value set on this property will be ignored.
type LiveEventTranscription struct { // Language - Specifies the language (locale) to be used for speech-to-text transcription – it should match the spoken language in the audio track. The value should be in BCP-47 format (e.g: 'en-US'). See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature and the list of supported languages. Language *string `json:"language,omitempty"` // InputTrackSelection - Provides a mechanism to select the audio track in the input live feed, to which speech-to-text transcription is applied. This property is reserved for future use, any value set on this property will be ignored. InputTrackSelection *[]LiveEventInputTrackSelection `json:"inputTrackSelection,omitempty"` // OutputTranscriptionTrack - Describes a transcription track in the output of a live event, generated using speech-to-text transcription. This property is reserved for future use, any value set on this property will be ignored. OutputTranscriptionTrack *LiveEventOutputTranscriptionTrack `json:"outputTranscriptionTrack,omitempty"` }
LiveEventsAllocateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsAllocateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (autorest.Response, error) }
func (future *LiveEventsAllocateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsClient is the client for the LiveEvents methods of the Media service.
type LiveEventsClient struct { BaseClient }
func NewLiveEventsClient(subscriptionID string) LiveEventsClient
NewLiveEventsClient creates an instance of the LiveEventsClient client.
func NewLiveEventsClientWithBaseURI(baseURI string, subscriptionID string) LiveEventsClient
NewLiveEventsClientWithBaseURI creates an instance of the LiveEventsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client LiveEventsClient) Allocate(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveEventsAllocateFuture, err error)
Allocate a live event is in StandBy state after allocation completes, and is ready to start. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveEventsClient) AllocatePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
AllocatePreparer prepares the Allocate request.
func (client LiveEventsClient) AllocateResponder(resp *http.Response) (result autorest.Response, err error)
AllocateResponder handles the response to the Allocate request. The method always closes the http.Response Body.
func (client LiveEventsClient) AllocateSender(req *http.Request) (future LiveEventsAllocateFuture, err error)
AllocateSender sends the Allocate request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Create(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEvent, autoStart *bool) (result LiveEventsCreateFuture, err error)
Create creates a new live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. parameters - live event properties needed for creation. autoStart - the flag indicates if the resource should be automatically started on creation.
func (client LiveEventsClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEvent, autoStart *bool) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client LiveEventsClient) CreateResponder(resp *http.Response) (result LiveEvent, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client LiveEventsClient) CreateSender(req *http.Request) (future LiveEventsCreateFuture, err error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveEventsDeleteFuture, err error)
Delete deletes a live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveEventsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client LiveEventsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client LiveEventsClient) DeleteSender(req *http.Request) (future LiveEventsDeleteFuture, err error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Get(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveEvent, err error)
Get gets properties of a live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveEventsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client LiveEventsClient) GetResponder(resp *http.Response) (result LiveEvent, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client LiveEventsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) List(ctx context.Context, resourceGroupName string, accountName string) (result LiveEventListResultPage, err error)
List lists all the live events in the account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client LiveEventsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string) (result LiveEventListResultIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client LiveEventsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client LiveEventsClient) ListResponder(resp *http.Response) (result LiveEventListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client LiveEventsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Reset(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveEventsResetFuture, err error)
Reset resets an existing live event. All live outputs for the live event are deleted and the live event is stopped and will be started again. All assets used by the live outputs and streaming locators created on these assets are unaffected. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveEventsClient) ResetPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
ResetPreparer prepares the Reset request.
func (client LiveEventsClient) ResetResponder(resp *http.Response) (result autorest.Response, err error)
ResetResponder handles the response to the Reset request. The method always closes the http.Response Body.
func (client LiveEventsClient) ResetSender(req *http.Request) (future LiveEventsResetFuture, err error)
ResetSender sends the Reset request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Start(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveEventsStartFuture, err error)
Start a live event in Stopped or StandBy state will be in Running state after the start operation completes. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveEventsClient) StartPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
StartPreparer prepares the Start request.
func (client LiveEventsClient) StartResponder(resp *http.Response) (result autorest.Response, err error)
StartResponder handles the response to the Start request. The method always closes the http.Response Body.
func (client LiveEventsClient) StartSender(req *http.Request) (future LiveEventsStartFuture, err error)
StartSender sends the Start request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Stop(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEventActionInput) (result LiveEventsStopFuture, err error)
Stop stops a running live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. parameters - liveEvent stop parameters
func (client LiveEventsClient) StopPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEventActionInput) (*http.Request, error)
StopPreparer prepares the Stop request.
func (client LiveEventsClient) StopResponder(resp *http.Response) (result autorest.Response, err error)
StopResponder handles the response to the Stop request. The method always closes the http.Response Body.
func (client LiveEventsClient) StopSender(req *http.Request) (future LiveEventsStopFuture, err error)
StopSender sends the Stop request. The method will close the http.Response Body if it receives an error.
func (client LiveEventsClient) Update(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEvent) (result LiveEventsUpdateFuture, err error)
Update updates settings on an existing live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. parameters - live event properties needed for patch.
func (client LiveEventsClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, parameters LiveEvent) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client LiveEventsClient) UpdateResponder(resp *http.Response) (result LiveEvent, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client LiveEventsClient) UpdateSender(req *http.Request) (future LiveEventsUpdateFuture, err error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
LiveEventsCreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsCreateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (LiveEvent, error) }
func (future *LiveEventsCreateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsDeleteFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (autorest.Response, error) }
func (future *LiveEventsDeleteFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsResetFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsResetFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (autorest.Response, error) }
func (future *LiveEventsResetFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsStartFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsStartFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (autorest.Response, error) }
func (future *LiveEventsStartFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsStopFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsStopFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (autorest.Response, error) }
func (future *LiveEventsStopFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveEventsUpdateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveEventsUpdateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveEventsClient) (LiveEvent, error) }
func (future *LiveEventsUpdateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveOutput the Live Output.
type LiveOutput struct { autorest.Response `json:"-"` // LiveOutputProperties - Live output properties. *LiveOutputProperties `json:"properties,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (lo LiveOutput) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for LiveOutput.
func (lo *LiveOutput) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for LiveOutput struct.
LiveOutputListResult the LiveOutput list result.
type LiveOutputListResult struct { autorest.Response `json:"-"` // Value - The result of the List LiveOutput operation. Value *[]LiveOutput `json:"value,omitempty"` // OdataCount - The number of result. OdataCount *int32 `json:"@odata.count,omitempty"` // OdataNextLink - The link to the next set of results. Not empty if value contains incomplete list of live outputs. OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (lolr LiveOutputListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
LiveOutputListResultIterator provides access to a complete listing of LiveOutput values.
type LiveOutputListResultIterator struct {
// contains filtered or unexported fields
}
func NewLiveOutputListResultIterator(page LiveOutputListResultPage) LiveOutputListResultIterator
Creates a new instance of the LiveOutputListResultIterator type.
func (iter *LiveOutputListResultIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *LiveOutputListResultIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter LiveOutputListResultIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter LiveOutputListResultIterator) Response() LiveOutputListResult
Response returns the raw server response from the last page request.
func (iter LiveOutputListResultIterator) Value() LiveOutput
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
LiveOutputListResultPage contains a page of LiveOutput values.
type LiveOutputListResultPage struct {
// contains filtered or unexported fields
}
func NewLiveOutputListResultPage(cur LiveOutputListResult, getNextPage func(context.Context, LiveOutputListResult) (LiveOutputListResult, error)) LiveOutputListResultPage
Creates a new instance of the LiveOutputListResultPage type.
func (page *LiveOutputListResultPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *LiveOutputListResultPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page LiveOutputListResultPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page LiveOutputListResultPage) Response() LiveOutputListResult
Response returns the raw server response from the last page request.
func (page LiveOutputListResultPage) Values() []LiveOutput
Values returns the slice of values for the current page or nil if there are no values.
LiveOutputProperties the JSON object that contains the properties required to create a live output.
type LiveOutputProperties struct { // Description - The description of the live output. Description *string `json:"description,omitempty"` // AssetName - The asset that the live output will write to. AssetName *string `json:"assetName,omitempty"` // ArchiveWindowLength - ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window. ArchiveWindowLength *string `json:"archiveWindowLength,omitempty"` // ManifestName - The manifest file name. If not provided, the service will generate one automatically. ManifestName *string `json:"manifestName,omitempty"` // Hls - HTTP Live Streaming (HLS) packing setting for the live output. Hls *Hls `json:"hls,omitempty"` // OutputSnapTime - The initial timestamp that the live output will start at, any content before this value will not be archived. OutputSnapTime *int64 `json:"outputSnapTime,omitempty"` // Created - READ-ONLY; The creation time the live output. Created *date.Time `json:"created,omitempty"` // LastModified - READ-ONLY; The time the live output was last modified. LastModified *date.Time `json:"lastModified,omitempty"` // ProvisioningState - READ-ONLY; The provisioning state of the live output. ProvisioningState *string `json:"provisioningState,omitempty"` // ResourceState - READ-ONLY; The resource state of the live output. Possible values include: 'LiveOutputResourceStateCreating', 'LiveOutputResourceStateRunning', 'LiveOutputResourceStateDeleting' ResourceState LiveOutputResourceState `json:"resourceState,omitempty"` }
func (lop LiveOutputProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for LiveOutputProperties.
LiveOutputResourceState enumerates the values for live output resource state.
type LiveOutputResourceState string
const ( // LiveOutputResourceStateCreating Live output is being created. No content is archived in the asset until // the live output is in running state. LiveOutputResourceStateCreating LiveOutputResourceState = "Creating" // LiveOutputResourceStateDeleting Live output is being deleted. The live asset is being converted from // live to on-demand asset. Any streaming URLs created on the live output asset continue to work. LiveOutputResourceStateDeleting LiveOutputResourceState = "Deleting" // LiveOutputResourceStateRunning Live output is running and archiving live streaming content to the asset // if there is valid input from a contribution encoder. LiveOutputResourceStateRunning LiveOutputResourceState = "Running" )
func PossibleLiveOutputResourceStateValues() []LiveOutputResourceState
PossibleLiveOutputResourceStateValues returns an array of possible values for the LiveOutputResourceState const type.
LiveOutputsClient is the client for the LiveOutputs methods of the Media service.
type LiveOutputsClient struct { BaseClient }
func NewLiveOutputsClient(subscriptionID string) LiveOutputsClient
NewLiveOutputsClient creates an instance of the LiveOutputsClient client.
func NewLiveOutputsClientWithBaseURI(baseURI string, subscriptionID string) LiveOutputsClient
NewLiveOutputsClientWithBaseURI creates an instance of the LiveOutputsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client LiveOutputsClient) Create(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string, parameters LiveOutput) (result LiveOutputsCreateFuture, err error)
Create creates a new live output. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. liveOutputName - the name of the live output. parameters - live Output properties needed for creation.
func (client LiveOutputsClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string, parameters LiveOutput) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client LiveOutputsClient) CreateResponder(resp *http.Response) (result LiveOutput, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client LiveOutputsClient) CreateSender(req *http.Request) (future LiveOutputsCreateFuture, err error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client LiveOutputsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string) (result LiveOutputsDeleteFuture, err error)
Delete deletes a live output. Deleting a live output does not delete the asset the live output is writing to. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. liveOutputName - the name of the live output.
func (client LiveOutputsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client LiveOutputsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client LiveOutputsClient) DeleteSender(req *http.Request) (future LiveOutputsDeleteFuture, err error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client LiveOutputsClient) Get(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string) (result LiveOutput, err error)
Get gets a live output. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32. liveOutputName - the name of the live output.
func (client LiveOutputsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string, liveOutputName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client LiveOutputsClient) GetResponder(resp *http.Response) (result LiveOutput, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client LiveOutputsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client LiveOutputsClient) List(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveOutputListResultPage, err error)
List lists the live outputs of a live event. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. liveEventName - the name of the live event, maximum length is 32.
func (client LiveOutputsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (result LiveOutputListResultIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client LiveOutputsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, liveEventName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client LiveOutputsClient) ListResponder(resp *http.Response) (result LiveOutputListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client LiveOutputsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
LiveOutputsCreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveOutputsCreateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveOutputsClient) (LiveOutput, error) }
func (future *LiveOutputsCreateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
LiveOutputsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type LiveOutputsDeleteFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(LiveOutputsClient) (autorest.Response, error) }
func (future *LiveOutputsDeleteFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
Location ...
type Location struct { Name *string `json:"name,omitempty"` }
LocationsClient is the client for the Locations methods of the Media service.
type LocationsClient struct { BaseClient }
func NewLocationsClient(subscriptionID string) LocationsClient
NewLocationsClient creates an instance of the LocationsClient client.
func NewLocationsClientWithBaseURI(baseURI string, subscriptionID string) LocationsClient
NewLocationsClientWithBaseURI creates an instance of the LocationsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client LocationsClient) CheckNameAvailability(ctx context.Context, locationName string, parameters CheckNameAvailabilityInput) (result EntityNameAvailabilityCheckOutput, err error)
CheckNameAvailability checks whether the Media Service resource name is available. Parameters: locationName - the name of the location parameters - the request parameters
func (client LocationsClient) CheckNameAvailabilityPreparer(ctx context.Context, locationName string, parameters CheckNameAvailabilityInput) (*http.Request, error)
CheckNameAvailabilityPreparer prepares the CheckNameAvailability request.
func (client LocationsClient) CheckNameAvailabilityResponder(resp *http.Response) (result EntityNameAvailabilityCheckOutput, err error)
CheckNameAvailabilityResponder handles the response to the CheckNameAvailability request. The method always closes the http.Response Body.
func (client LocationsClient) CheckNameAvailabilitySender(req *http.Request) (*http.Response, error)
CheckNameAvailabilitySender sends the CheckNameAvailability request. The method will close the http.Response Body if it receives an error.
LogSpecification a diagnostic log emitted by service.
type LogSpecification struct { // Name - READ-ONLY; The diagnostic log category name. Name *string `json:"name,omitempty"` // DisplayName - READ-ONLY; The diagnostic log category display name. DisplayName *string `json:"displayName,omitempty"` // BlobDuration - READ-ONLY; The time range for requests in each blob. BlobDuration *string `json:"blobDuration,omitempty"` }
func (ls LogSpecification) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for LogSpecification.
ManagedIdentityType enumerates the values for managed identity type.
type ManagedIdentityType string
const ( // ManagedIdentityTypeNone No managed identity. ManagedIdentityTypeNone ManagedIdentityType = "None" // ManagedIdentityTypeSystemAssigned A system-assigned managed identity. ManagedIdentityTypeSystemAssigned ManagedIdentityType = "SystemAssigned" )
func PossibleManagedIdentityTypeValues() []ManagedIdentityType
PossibleManagedIdentityTypeValues returns an array of possible values for the ManagedIdentityType const type.
MediaservicesClient is the client for the Mediaservices methods of the Media service.
type MediaservicesClient struct { BaseClient }
func NewMediaservicesClient(subscriptionID string) MediaservicesClient
NewMediaservicesClient creates an instance of the MediaservicesClient client.
func NewMediaservicesClientWithBaseURI(baseURI string, subscriptionID string) MediaservicesClient
NewMediaservicesClientWithBaseURI creates an instance of the MediaservicesClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client MediaservicesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, parameters Service) (result Service, err error)
CreateOrUpdate creates or updates a Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. parameters - the request parameters
func (client MediaservicesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, parameters Service) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client MediaservicesClient) CreateOrUpdateResponder(resp *http.Response) (result Service, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client MediaservicesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) Delete(ctx context.Context, resourceGroupName string, accountName string) (result autorest.Response, err error)
Delete deletes a Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client MediaservicesClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client MediaservicesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client MediaservicesClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) Get(ctx context.Context, resourceGroupName string, accountName string) (result Service, err error)
Get get the details of a Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client MediaservicesClient) GetBySubscription(ctx context.Context, accountName string) (result Service, err error)
GetBySubscription get the details of a Media Services account Parameters: accountName - the Media Services account name.
func (client MediaservicesClient) GetBySubscriptionPreparer(ctx context.Context, accountName string) (*http.Request, error)
GetBySubscriptionPreparer prepares the GetBySubscription request.
func (client MediaservicesClient) GetBySubscriptionResponder(resp *http.Response) (result Service, err error)
GetBySubscriptionResponder handles the response to the GetBySubscription request. The method always closes the http.Response Body.
func (client MediaservicesClient) GetBySubscriptionSender(req *http.Request) (*http.Response, error)
GetBySubscriptionSender sends the GetBySubscription request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client MediaservicesClient) GetResponder(resp *http.Response) (result Service, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client MediaservicesClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) List(ctx context.Context, resourceGroupName string) (result ServiceCollectionPage, err error)
List list Media Services accounts in the resource group Parameters: resourceGroupName - the name of the resource group within the Azure subscription.
func (client MediaservicesClient) ListBySubscription(ctx context.Context) (result ServiceCollectionPage, err error)
ListBySubscription list Media Services accounts in the subscription.
func (client MediaservicesClient) ListBySubscriptionComplete(ctx context.Context) (result ServiceCollectionIterator, err error)
ListBySubscriptionComplete enumerates all values, automatically crossing page boundaries as required.
func (client MediaservicesClient) ListBySubscriptionPreparer(ctx context.Context) (*http.Request, error)
ListBySubscriptionPreparer prepares the ListBySubscription request.
func (client MediaservicesClient) ListBySubscriptionResponder(resp *http.Response) (result ServiceCollection, err error)
ListBySubscriptionResponder handles the response to the ListBySubscription request. The method always closes the http.Response Body.
func (client MediaservicesClient) ListBySubscriptionSender(req *http.Request) (*http.Response, error)
ListBySubscriptionSender sends the ListBySubscription request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) ListComplete(ctx context.Context, resourceGroupName string) (result ServiceCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client MediaservicesClient) ListEdgePolicies(ctx context.Context, resourceGroupName string, accountName string, parameters ListEdgePoliciesInput) (result EdgePolicies, err error)
ListEdgePolicies list the media edge policies associated with the Media Services account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. parameters - the request parameters
func (client MediaservicesClient) ListEdgePoliciesPreparer(ctx context.Context, resourceGroupName string, accountName string, parameters ListEdgePoliciesInput) (*http.Request, error)
ListEdgePoliciesPreparer prepares the ListEdgePolicies request.
func (client MediaservicesClient) ListEdgePoliciesResponder(resp *http.Response) (result EdgePolicies, err error)
ListEdgePoliciesResponder handles the response to the ListEdgePolicies request. The method always closes the http.Response Body.
func (client MediaservicesClient) ListEdgePoliciesSender(req *http.Request) (*http.Response, error)
ListEdgePoliciesSender sends the ListEdgePolicies request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client MediaservicesClient) ListResponder(resp *http.Response) (result ServiceCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client MediaservicesClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) SyncStorageKeys(ctx context.Context, resourceGroupName string, accountName string, parameters SyncStorageKeysInput) (result autorest.Response, err error)
SyncStorageKeys synchronizes storage account keys for a storage account associated with the Media Service account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. parameters - the request parameters
func (client MediaservicesClient) SyncStorageKeysPreparer(ctx context.Context, resourceGroupName string, accountName string, parameters SyncStorageKeysInput) (*http.Request, error)
SyncStorageKeysPreparer prepares the SyncStorageKeys request.
func (client MediaservicesClient) SyncStorageKeysResponder(resp *http.Response) (result autorest.Response, err error)
SyncStorageKeysResponder handles the response to the SyncStorageKeys request. The method always closes the http.Response Body.
func (client MediaservicesClient) SyncStorageKeysSender(req *http.Request) (*http.Response, error)
SyncStorageKeysSender sends the SyncStorageKeys request. The method will close the http.Response Body if it receives an error.
func (client MediaservicesClient) Update(ctx context.Context, resourceGroupName string, accountName string, parameters Service) (result Service, err error)
Update updates an existing Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. parameters - the request parameters
func (client MediaservicesClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, parameters Service) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client MediaservicesClient) UpdateResponder(resp *http.Response) (result Service, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client MediaservicesClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
MetricAggregationType enumerates the values for metric aggregation type.
type MetricAggregationType string
const ( // Average The average. Average MetricAggregationType = "Average" // Count The count of a number of items, usually requests. Count MetricAggregationType = "Count" // Total The sum. Total MetricAggregationType = "Total" )
func PossibleMetricAggregationTypeValues() []MetricAggregationType
PossibleMetricAggregationTypeValues returns an array of possible values for the MetricAggregationType const type.
MetricDimension a metric dimension.
type MetricDimension struct { // Name - READ-ONLY; The metric dimension name. Name *string `json:"name,omitempty"` // DisplayName - READ-ONLY; The display name for the dimension. DisplayName *string `json:"displayName,omitempty"` // ToBeExportedForShoebox - READ-ONLY; Whether to export metric to shoebox. ToBeExportedForShoebox *bool `json:"toBeExportedForShoebox,omitempty"` }
func (md MetricDimension) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for MetricDimension.
MetricSpecification a metric emitted by service.
type MetricSpecification struct { // Name - READ-ONLY; The metric name. Name *string `json:"name,omitempty"` // DisplayName - READ-ONLY; The metric display name. DisplayName *string `json:"displayName,omitempty"` // DisplayDescription - READ-ONLY; The metric display description. DisplayDescription *string `json:"displayDescription,omitempty"` // Unit - READ-ONLY; The metric unit. Possible values include: 'MetricUnitBytes', 'MetricUnitCount', 'MetricUnitMilliseconds' Unit MetricUnit `json:"unit,omitempty"` // AggregationType - READ-ONLY; The metric aggregation type. Possible values include: 'Average', 'Count', 'Total' AggregationType MetricAggregationType `json:"aggregationType,omitempty"` // LockAggregationType - READ-ONLY; The metric lock aggregation type. Possible values include: 'Average', 'Count', 'Total' LockAggregationType MetricAggregationType `json:"lockAggregationType,omitempty"` // SupportedAggregationTypes - Supported aggregation types. SupportedAggregationTypes *[]string `json:"supportedAggregationTypes,omitempty"` // Dimensions - READ-ONLY; The metric dimensions. Dimensions *[]MetricDimension `json:"dimensions,omitempty"` }
func (ms MetricSpecification) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for MetricSpecification.
MetricUnit enumerates the values for metric unit.
type MetricUnit string
const ( // MetricUnitBytes The number of bytes. MetricUnitBytes MetricUnit = "Bytes" // MetricUnitCount The count. MetricUnitCount MetricUnit = "Count" // MetricUnitMilliseconds The number of milliseconds. MetricUnitMilliseconds MetricUnit = "Milliseconds" )
func PossibleMetricUnitValues() []MetricUnit
PossibleMetricUnitValues returns an array of possible values for the MetricUnit const type.
Mp4Format describes the properties for an output ISO MP4 file.
type Mp4Format struct { // OutputFiles - The list of output files to produce. Each entry in the list is a set of audio and video layer labels to be muxed together . OutputFiles *[]OutputFile `json:"outputFiles,omitempty"` // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (m4f Mp4Format) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for Mp4Format.
func (m4f Mp4Format) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Mp4Format.
MultiBitrateFormat describes the properties for producing a collection of GOP aligned multi-bitrate files. The default behavior is to produce one output file for each video layer which is muxed together with all the audios. The exact output files produced can be controlled by specifying the outputFiles collection.
type MultiBitrateFormat struct { // OutputFiles - The list of output files to produce. Each entry in the list is a set of audio and video layer labels to be muxed together . OutputFiles *[]OutputFile `json:"outputFiles,omitempty"` // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (mbf MultiBitrateFormat) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for MultiBitrateFormat.
func (mbf MultiBitrateFormat) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for MultiBitrateFormat.
NoEncryption class for NoEncryption scheme
type NoEncryption struct { // EnabledProtocols - Representing supported protocols EnabledProtocols *EnabledProtocols `json:"enabledProtocols,omitempty"` }
ODataError information about an error.
type ODataError struct { // Code - A language-independent error name. Code *string `json:"code,omitempty"` // Message - The error message. Message *string `json:"message,omitempty"` // Target - The target of the error (for example, the name of the property in error). Target *string `json:"target,omitempty"` // Details - The error details. Details *[]ODataError `json:"details,omitempty"` }
OdataType enumerates the values for odata type.
type OdataType string
const ( // OdataTypeContentKeyPolicyPlayReadyContentKeyLocation ... OdataTypeContentKeyPolicyPlayReadyContentKeyLocation OdataType = "ContentKeyPolicyPlayReadyContentKeyLocation" // OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader ... OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader OdataType = "#Microsoft.Media.ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader" // OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier ... OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier OdataType = "#Microsoft.Media.ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier" )
func PossibleOdataTypeValues() []OdataType
PossibleOdataTypeValues returns an array of possible values for the OdataType const type.
OdataTypeBasicClipTime enumerates the values for odata type basic clip time.
type OdataTypeBasicClipTime string
const ( // OdataTypeClipTime ... OdataTypeClipTime OdataTypeBasicClipTime = "ClipTime" // OdataTypeMicrosoftMediaAbsoluteClipTime ... OdataTypeMicrosoftMediaAbsoluteClipTime OdataTypeBasicClipTime = "#Microsoft.Media.AbsoluteClipTime" // OdataTypeMicrosoftMediaUtcClipTime ... OdataTypeMicrosoftMediaUtcClipTime OdataTypeBasicClipTime = "#Microsoft.Media.UtcClipTime" )
func PossibleOdataTypeBasicClipTimeValues() []OdataTypeBasicClipTime
PossibleOdataTypeBasicClipTimeValues returns an array of possible values for the OdataTypeBasicClipTime const type.
OdataTypeBasicCodec enumerates the values for odata type basic codec.
type OdataTypeBasicCodec string
const ( // OdataTypeCodec ... OdataTypeCodec OdataTypeBasicCodec = "Codec" // OdataTypeMicrosoftMediaAacAudio ... OdataTypeMicrosoftMediaAacAudio OdataTypeBasicCodec = "#Microsoft.Media.AacAudio" // OdataTypeMicrosoftMediaAudio ... OdataTypeMicrosoftMediaAudio OdataTypeBasicCodec = "#Microsoft.Media.Audio" // OdataTypeMicrosoftMediaCopyAudio ... OdataTypeMicrosoftMediaCopyAudio OdataTypeBasicCodec = "#Microsoft.Media.CopyAudio" // OdataTypeMicrosoftMediaCopyVideo ... OdataTypeMicrosoftMediaCopyVideo OdataTypeBasicCodec = "#Microsoft.Media.CopyVideo" // OdataTypeMicrosoftMediaH264Video ... OdataTypeMicrosoftMediaH264Video OdataTypeBasicCodec = "#Microsoft.Media.H264Video" // OdataTypeMicrosoftMediaH265Video ... OdataTypeMicrosoftMediaH265Video OdataTypeBasicCodec = "#Microsoft.Media.H265Video" // OdataTypeMicrosoftMediaImage ... OdataTypeMicrosoftMediaImage OdataTypeBasicCodec = "#Microsoft.Media.Image" // OdataTypeMicrosoftMediaJpgImage ... OdataTypeMicrosoftMediaJpgImage OdataTypeBasicCodec = "#Microsoft.Media.JpgImage" // OdataTypeMicrosoftMediaPngImage ... OdataTypeMicrosoftMediaPngImage OdataTypeBasicCodec = "#Microsoft.Media.PngImage" // OdataTypeMicrosoftMediaVideo ... OdataTypeMicrosoftMediaVideo OdataTypeBasicCodec = "#Microsoft.Media.Video" )
func PossibleOdataTypeBasicCodecValues() []OdataTypeBasicCodec
PossibleOdataTypeBasicCodecValues returns an array of possible values for the OdataTypeBasicCodec const type.
OdataTypeBasicContentKeyPolicyConfiguration enumerates the values for odata type basic content key policy configuration.
type OdataTypeBasicContentKeyPolicyConfiguration string
const ( // OdataTypeContentKeyPolicyConfiguration ... OdataTypeContentKeyPolicyConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "ContentKeyPolicyConfiguration" // OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration ... OdataTypeMicrosoftMediaContentKeyPolicyClearKeyConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration" // OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration ... OdataTypeMicrosoftMediaContentKeyPolicyFairPlayConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration" // OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration ... OdataTypeMicrosoftMediaContentKeyPolicyPlayReadyConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration" // OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration ... OdataTypeMicrosoftMediaContentKeyPolicyUnknownConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "#Microsoft.Media.ContentKeyPolicyUnknownConfiguration" // OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration ... OdataTypeMicrosoftMediaContentKeyPolicyWidevineConfiguration OdataTypeBasicContentKeyPolicyConfiguration = "#Microsoft.Media.ContentKeyPolicyWidevineConfiguration" )
func PossibleOdataTypeBasicContentKeyPolicyConfigurationValues() []OdataTypeBasicContentKeyPolicyConfiguration
PossibleOdataTypeBasicContentKeyPolicyConfigurationValues returns an array of possible values for the OdataTypeBasicContentKeyPolicyConfiguration const type.
OdataTypeBasicContentKeyPolicyRestriction enumerates the values for odata type basic content key policy restriction.
type OdataTypeBasicContentKeyPolicyRestriction string
const ( // OdataTypeContentKeyPolicyRestriction ... OdataTypeContentKeyPolicyRestriction OdataTypeBasicContentKeyPolicyRestriction = "ContentKeyPolicyRestriction" // OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction ... OdataTypeMicrosoftMediaContentKeyPolicyOpenRestriction OdataTypeBasicContentKeyPolicyRestriction = "#Microsoft.Media.ContentKeyPolicyOpenRestriction" // OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction ... OdataTypeMicrosoftMediaContentKeyPolicyTokenRestriction OdataTypeBasicContentKeyPolicyRestriction = "#Microsoft.Media.ContentKeyPolicyTokenRestriction" // OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction ... OdataTypeMicrosoftMediaContentKeyPolicyUnknownRestriction OdataTypeBasicContentKeyPolicyRestriction = "#Microsoft.Media.ContentKeyPolicyUnknownRestriction" )
func PossibleOdataTypeBasicContentKeyPolicyRestrictionValues() []OdataTypeBasicContentKeyPolicyRestriction
PossibleOdataTypeBasicContentKeyPolicyRestrictionValues returns an array of possible values for the OdataTypeBasicContentKeyPolicyRestriction const type.
OdataTypeBasicContentKeyPolicyRestrictionTokenKey enumerates the values for odata type basic content key policy restriction token key.
type OdataTypeBasicContentKeyPolicyRestrictionTokenKey string
const ( // OdataTypeContentKeyPolicyRestrictionTokenKey ... OdataTypeContentKeyPolicyRestrictionTokenKey OdataTypeBasicContentKeyPolicyRestrictionTokenKey = "ContentKeyPolicyRestrictionTokenKey" // OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey ... OdataTypeMicrosoftMediaContentKeyPolicyRsaTokenKey OdataTypeBasicContentKeyPolicyRestrictionTokenKey = "#Microsoft.Media.ContentKeyPolicyRsaTokenKey" // OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey ... OdataTypeMicrosoftMediaContentKeyPolicySymmetricTokenKey OdataTypeBasicContentKeyPolicyRestrictionTokenKey = "#Microsoft.Media.ContentKeyPolicySymmetricTokenKey" // OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey ... OdataTypeMicrosoftMediaContentKeyPolicyX509CertificateTokenKey OdataTypeBasicContentKeyPolicyRestrictionTokenKey = "#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey" )
func PossibleOdataTypeBasicContentKeyPolicyRestrictionTokenKeyValues() []OdataTypeBasicContentKeyPolicyRestrictionTokenKey
PossibleOdataTypeBasicContentKeyPolicyRestrictionTokenKeyValues returns an array of possible values for the OdataTypeBasicContentKeyPolicyRestrictionTokenKey const type.
OdataTypeBasicFormat enumerates the values for odata type basic format.
type OdataTypeBasicFormat string
const ( // OdataTypeFormat ... OdataTypeFormat OdataTypeBasicFormat = "Format" // OdataTypeMicrosoftMediaImageFormat ... OdataTypeMicrosoftMediaImageFormat OdataTypeBasicFormat = "#Microsoft.Media.ImageFormat" // OdataTypeMicrosoftMediaJpgFormat ... OdataTypeMicrosoftMediaJpgFormat OdataTypeBasicFormat = "#Microsoft.Media.JpgFormat" // OdataTypeMicrosoftMediaMp4Format ... OdataTypeMicrosoftMediaMp4Format OdataTypeBasicFormat = "#Microsoft.Media.Mp4Format" // OdataTypeMicrosoftMediaMultiBitrateFormat ... OdataTypeMicrosoftMediaMultiBitrateFormat OdataTypeBasicFormat = "#Microsoft.Media.MultiBitrateFormat" // OdataTypeMicrosoftMediaPngFormat ... OdataTypeMicrosoftMediaPngFormat OdataTypeBasicFormat = "#Microsoft.Media.PngFormat" // OdataTypeMicrosoftMediaTransportStreamFormat ... OdataTypeMicrosoftMediaTransportStreamFormat OdataTypeBasicFormat = "#Microsoft.Media.TransportStreamFormat" )
func PossibleOdataTypeBasicFormatValues() []OdataTypeBasicFormat
PossibleOdataTypeBasicFormatValues returns an array of possible values for the OdataTypeBasicFormat const type.
OdataTypeBasicInputDefinition enumerates the values for odata type basic input definition.
type OdataTypeBasicInputDefinition string
const ( // OdataTypeInputDefinition ... OdataTypeInputDefinition OdataTypeBasicInputDefinition = "InputDefinition" // OdataTypeMicrosoftMediaFromAllInputFile ... OdataTypeMicrosoftMediaFromAllInputFile OdataTypeBasicInputDefinition = "#Microsoft.Media.FromAllInputFile" // OdataTypeMicrosoftMediaFromEachInputFile ... OdataTypeMicrosoftMediaFromEachInputFile OdataTypeBasicInputDefinition = "#Microsoft.Media.FromEachInputFile" // OdataTypeMicrosoftMediaInputFile ... OdataTypeMicrosoftMediaInputFile OdataTypeBasicInputDefinition = "#Microsoft.Media.InputFile" )
func PossibleOdataTypeBasicInputDefinitionValues() []OdataTypeBasicInputDefinition
PossibleOdataTypeBasicInputDefinitionValues returns an array of possible values for the OdataTypeBasicInputDefinition const type.
OdataTypeBasicJobInput enumerates the values for odata type basic job input.
type OdataTypeBasicJobInput string
const ( // OdataTypeJobInput ... OdataTypeJobInput OdataTypeBasicJobInput = "JobInput" // OdataTypeMicrosoftMediaJobInputAsset ... OdataTypeMicrosoftMediaJobInputAsset OdataTypeBasicJobInput = "#Microsoft.Media.JobInputAsset" // OdataTypeMicrosoftMediaJobInputClip ... OdataTypeMicrosoftMediaJobInputClip OdataTypeBasicJobInput = "#Microsoft.Media.JobInputClip" // OdataTypeMicrosoftMediaJobInputHTTP ... OdataTypeMicrosoftMediaJobInputHTTP OdataTypeBasicJobInput = "#Microsoft.Media.JobInputHttp" // OdataTypeMicrosoftMediaJobInputs ... OdataTypeMicrosoftMediaJobInputs OdataTypeBasicJobInput = "#Microsoft.Media.JobInputs" // OdataTypeMicrosoftMediaJobInputSequence ... OdataTypeMicrosoftMediaJobInputSequence OdataTypeBasicJobInput = "#Microsoft.Media.JobInputSequence" )
func PossibleOdataTypeBasicJobInputValues() []OdataTypeBasicJobInput
PossibleOdataTypeBasicJobInputValues returns an array of possible values for the OdataTypeBasicJobInput const type.
OdataTypeBasicJobOutput enumerates the values for odata type basic job output.
type OdataTypeBasicJobOutput string
const ( // OdataTypeJobOutput ... OdataTypeJobOutput OdataTypeBasicJobOutput = "JobOutput" // OdataTypeMicrosoftMediaJobOutputAsset ... OdataTypeMicrosoftMediaJobOutputAsset OdataTypeBasicJobOutput = "#Microsoft.Media.JobOutputAsset" )
func PossibleOdataTypeBasicJobOutputValues() []OdataTypeBasicJobOutput
PossibleOdataTypeBasicJobOutputValues returns an array of possible values for the OdataTypeBasicJobOutput const type.
OdataTypeBasicLayer enumerates the values for odata type basic layer.
type OdataTypeBasicLayer string
const ( // OdataTypeLayer ... OdataTypeLayer OdataTypeBasicLayer = "Layer" // OdataTypeMicrosoftMediaH264Layer ... OdataTypeMicrosoftMediaH264Layer OdataTypeBasicLayer = "#Microsoft.Media.H264Layer" // OdataTypeMicrosoftMediaH265Layer ... OdataTypeMicrosoftMediaH265Layer OdataTypeBasicLayer = "#Microsoft.Media.H265Layer" // OdataTypeMicrosoftMediaH265VideoLayer ... OdataTypeMicrosoftMediaH265VideoLayer OdataTypeBasicLayer = "#Microsoft.Media.H265VideoLayer" // OdataTypeMicrosoftMediaJpgLayer ... OdataTypeMicrosoftMediaJpgLayer OdataTypeBasicLayer = "#Microsoft.Media.JpgLayer" // OdataTypeMicrosoftMediaPngLayer ... OdataTypeMicrosoftMediaPngLayer OdataTypeBasicLayer = "#Microsoft.Media.PngLayer" // OdataTypeMicrosoftMediaVideoLayer ... OdataTypeMicrosoftMediaVideoLayer OdataTypeBasicLayer = "#Microsoft.Media.VideoLayer" )
func PossibleOdataTypeBasicLayerValues() []OdataTypeBasicLayer
PossibleOdataTypeBasicLayerValues returns an array of possible values for the OdataTypeBasicLayer const type.
OdataTypeBasicOverlay enumerates the values for odata type basic overlay.
type OdataTypeBasicOverlay string
const ( // OdataTypeMicrosoftMediaAudioOverlay ... OdataTypeMicrosoftMediaAudioOverlay OdataTypeBasicOverlay = "#Microsoft.Media.AudioOverlay" // OdataTypeMicrosoftMediaVideoOverlay ... OdataTypeMicrosoftMediaVideoOverlay OdataTypeBasicOverlay = "#Microsoft.Media.VideoOverlay" // OdataTypeOverlay ... OdataTypeOverlay OdataTypeBasicOverlay = "Overlay" )
func PossibleOdataTypeBasicOverlayValues() []OdataTypeBasicOverlay
PossibleOdataTypeBasicOverlayValues returns an array of possible values for the OdataTypeBasicOverlay const type.
OdataTypeBasicPreset enumerates the values for odata type basic preset.
type OdataTypeBasicPreset string
const ( // OdataTypeMicrosoftMediaAudioAnalyzerPreset ... OdataTypeMicrosoftMediaAudioAnalyzerPreset OdataTypeBasicPreset = "#Microsoft.Media.AudioAnalyzerPreset" // OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset ... OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset OdataTypeBasicPreset = "#Microsoft.Media.BuiltInStandardEncoderPreset" // OdataTypeMicrosoftMediaFaceDetectorPreset ... OdataTypeMicrosoftMediaFaceDetectorPreset OdataTypeBasicPreset = "#Microsoft.Media.FaceDetectorPreset" // OdataTypeMicrosoftMediaStandardEncoderPreset ... OdataTypeMicrosoftMediaStandardEncoderPreset OdataTypeBasicPreset = "#Microsoft.Media.StandardEncoderPreset" // OdataTypeMicrosoftMediaVideoAnalyzerPreset ... OdataTypeMicrosoftMediaVideoAnalyzerPreset OdataTypeBasicPreset = "#Microsoft.Media.VideoAnalyzerPreset" // OdataTypePreset ... OdataTypePreset OdataTypeBasicPreset = "Preset" )
func PossibleOdataTypeBasicPresetValues() []OdataTypeBasicPreset
PossibleOdataTypeBasicPresetValues returns an array of possible values for the OdataTypeBasicPreset const type.
OdataTypeBasicTrackDescriptor enumerates the values for odata type basic track descriptor.
type OdataTypeBasicTrackDescriptor string
const ( // OdataTypeMicrosoftMediaAudioTrackDescriptor ... OdataTypeMicrosoftMediaAudioTrackDescriptor OdataTypeBasicTrackDescriptor = "#Microsoft.Media.AudioTrackDescriptor" // OdataTypeMicrosoftMediaSelectAudioTrackByAttribute ... OdataTypeMicrosoftMediaSelectAudioTrackByAttribute OdataTypeBasicTrackDescriptor = "#Microsoft.Media.SelectAudioTrackByAttribute" // OdataTypeMicrosoftMediaSelectAudioTrackByID ... OdataTypeMicrosoftMediaSelectAudioTrackByID OdataTypeBasicTrackDescriptor = "#Microsoft.Media.SelectAudioTrackById" // OdataTypeMicrosoftMediaSelectVideoTrackByAttribute ... OdataTypeMicrosoftMediaSelectVideoTrackByAttribute OdataTypeBasicTrackDescriptor = "#Microsoft.Media.SelectVideoTrackByAttribute" // OdataTypeMicrosoftMediaSelectVideoTrackByID ... OdataTypeMicrosoftMediaSelectVideoTrackByID OdataTypeBasicTrackDescriptor = "#Microsoft.Media.SelectVideoTrackById" // OdataTypeMicrosoftMediaVideoTrackDescriptor ... OdataTypeMicrosoftMediaVideoTrackDescriptor OdataTypeBasicTrackDescriptor = "#Microsoft.Media.VideoTrackDescriptor" // OdataTypeTrackDescriptor ... OdataTypeTrackDescriptor OdataTypeBasicTrackDescriptor = "TrackDescriptor" )
func PossibleOdataTypeBasicTrackDescriptorValues() []OdataTypeBasicTrackDescriptor
PossibleOdataTypeBasicTrackDescriptorValues returns an array of possible values for the OdataTypeBasicTrackDescriptor const type.
OnErrorType enumerates the values for on error type.
type OnErrorType string
const ( // ContinueJob Tells the service that if this TransformOutput fails, then allow any other TransformOutput // to continue. ContinueJob OnErrorType = "ContinueJob" // StopProcessingJob Tells the service that if this TransformOutput fails, then any other incomplete // TransformOutputs can be stopped. StopProcessingJob OnErrorType = "StopProcessingJob" )
func PossibleOnErrorTypeValues() []OnErrorType
PossibleOnErrorTypeValues returns an array of possible values for the OnErrorType const type.
Operation an operation.
type Operation struct { // Name - The operation name. Name *string `json:"name,omitempty"` // Display - The operation display name. Display *OperationDisplay `json:"display,omitempty"` // Origin - Origin of the operation. Origin *string `json:"origin,omitempty"` // Properties - Operation properties format. Properties *Properties `json:"properties,omitempty"` }
OperationCollection a collection of Operation items.
type OperationCollection struct { autorest.Response `json:"-"` // Value - A collection of Operation items. Value *[]Operation `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (oc OperationCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
OperationCollectionIterator provides access to a complete listing of Operation values.
type OperationCollectionIterator struct {
// contains filtered or unexported fields
}
func NewOperationCollectionIterator(page OperationCollectionPage) OperationCollectionIterator
Creates a new instance of the OperationCollectionIterator type.
func (iter *OperationCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *OperationCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter OperationCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter OperationCollectionIterator) Response() OperationCollection
Response returns the raw server response from the last page request.
func (iter OperationCollectionIterator) Value() Operation
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
OperationCollectionPage contains a page of Operation values.
type OperationCollectionPage struct {
// contains filtered or unexported fields
}
func NewOperationCollectionPage(cur OperationCollection, getNextPage func(context.Context, OperationCollection) (OperationCollection, error)) OperationCollectionPage
Creates a new instance of the OperationCollectionPage type.
func (page *OperationCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *OperationCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page OperationCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page OperationCollectionPage) Response() OperationCollection
Response returns the raw server response from the last page request.
func (page OperationCollectionPage) Values() []Operation
Values returns the slice of values for the current page or nil if there are no values.
OperationDisplay operation details.
type OperationDisplay struct { // Provider - The service provider. Provider *string `json:"provider,omitempty"` // Resource - Resource on which the operation is performed. Resource *string `json:"resource,omitempty"` // Operation - The operation type. Operation *string `json:"operation,omitempty"` // Description - The operation description. Description *string `json:"description,omitempty"` }
OperationsClient is the client for the Operations methods of the Media service.
type OperationsClient struct { BaseClient }
func NewOperationsClient(subscriptionID string) OperationsClient
NewOperationsClient creates an instance of the OperationsClient client.
func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient
NewOperationsClientWithBaseURI creates an instance of the OperationsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client OperationsClient) List(ctx context.Context) (result OperationCollectionPage, err error)
List lists all the Media Services operations.
func (client OperationsClient) ListComplete(ctx context.Context) (result OperationCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client OperationsClient) ListPreparer(ctx context.Context) (*http.Request, error)
ListPreparer prepares the List request.
func (client OperationsClient) ListResponder(resp *http.Response) (result OperationCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client OperationsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
OutputFile represents an output file produced.
type OutputFile struct { // Labels - The list of labels that describe how the encoder should multiplex video and audio into an output file. For example, if the encoder is producing two video layers with labels v1 and v2, and one audio layer with label a1, then an array like '[v1, a1]' tells the encoder to produce an output file with the video track represented by v1 and the audio track represented by a1. Labels *[]string `json:"labels,omitempty"` }
Overlay base type for all overlays - image, audio or video.
type Overlay struct { // InputLabel - The label of the job input which is to be used as an overlay. The Input must specify exactly one file. You can specify an image file in JPG, PNG, GIF or BMP format, or an audio file (such as a WAV, MP3, WMA or M4A file), or a video file. See https://aka.ms/mesformats for the complete list of supported audio and video file formats. InputLabel *string `json:"inputLabel,omitempty"` // Start - The start position, with reference to the input video, at which the overlay starts. The value should be in ISO 8601 format. For example, PT05S to start the overlay at 5 seconds into the input video. If not specified the overlay starts from the beginning of the input video. Start *string `json:"start,omitempty"` // End - The end position, with reference to the input video, at which the overlay ends. The value should be in ISO 8601 format. For example, PT30S to end the overlay at 30 seconds into the input video. If not specified or the value is greater than the input video duration, the overlay will be applied until the end of the input video if the overlay media duration is greater than the input video duration, else the overlay will last as long as the overlay media duration. End *string `json:"end,omitempty"` // FadeInDuration - The duration over which the overlay fades in onto the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade in (same as PT0S). FadeInDuration *string `json:"fadeInDuration,omitempty"` // FadeOutDuration - The duration over which the overlay fades out of the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade out (same as PT0S). FadeOutDuration *string `json:"fadeOutDuration,omitempty"` // AudioGainLevel - The gain level of audio in the overlay. The value should be in the range [0, 1.0]. The default is 1.0. AudioGainLevel *float64 `json:"audioGainLevel,omitempty"` // OdataType - Possible values include: 'OdataTypeOverlay', 'OdataTypeMicrosoftMediaAudioOverlay', 'OdataTypeMicrosoftMediaVideoOverlay' OdataType OdataTypeBasicOverlay `json:"@odata.type,omitempty"` }
func (o Overlay) AsAudioOverlay() (*AudioOverlay, bool)
AsAudioOverlay is the BasicOverlay implementation for Overlay.
func (o Overlay) AsBasicOverlay() (BasicOverlay, bool)
AsBasicOverlay is the BasicOverlay implementation for Overlay.
func (o Overlay) AsOverlay() (*Overlay, bool)
AsOverlay is the BasicOverlay implementation for Overlay.
func (o Overlay) AsVideoOverlay() (*VideoOverlay, bool)
AsVideoOverlay is the BasicOverlay implementation for Overlay.
func (o Overlay) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Overlay.
PngFormat describes the settings for producing PNG thumbnails.
type PngFormat struct { // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (pf PngFormat) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for PngFormat.
func (pf PngFormat) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PngFormat.
PngImage describes the properties for producing a series of PNG images from the input video.
type PngImage struct { // Layers - A collection of output PNG image layers to be produced by the encoder. Layers *[]PngLayer `json:"layers,omitempty"` // Start - The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, PT05S to start at 5 seconds), or a frame count (For example, 10 to start at the 10th frame), or a relative value to stream duration (For example, 10% to start at 10% of stream duration). Also supports a macro {Best}, which tells the encoder to select the best thumbnail from the first few seconds of the video and will only produce one thumbnail, no matter what other settings are for Step and Range. The default value is macro {Best}. Start *string `json:"start,omitempty"` // Step - The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, PT05S for one image every 5 seconds), or a frame count (For example, 30 for one image every 30 frames), or a relative value to stream duration (For example, 10% for one image every 10% of stream duration). Note: Step value will affect the first generated thumbnail, which may not be exactly the one specified at transform preset start time. This is due to the encoder, which tries to select the best thumbnail between start time and Step position from start time as the first output. As the default value is 10%, it means if stream has long duration, the first generated thumbnail might be far away from the one specified at start time. Try to select reasonable value for Step if the first thumbnail is expected close to start time, or set Range value at 1 if only one thumbnail is needed at start time. Step *string `json:"step,omitempty"` // Range - The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, PT5M30S to stop at 5 minutes and 30 seconds from start time), or a frame count (For example, 300 to stop at the 300th frame from the frame at start time. If this value is 1, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, 50% to stop at half of stream duration from start time). The default value is 100%, which means to stop at the end of the stream. Range *string `json:"range,omitempty"` // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (pi PngImage) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for PngImage.
func (pi PngImage) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for PngImage.
func (pi PngImage) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for PngImage.
func (pi PngImage) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for PngImage.
func (pi PngImage) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for PngImage.
func (pi PngImage) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for PngImage.
func (pi PngImage) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for PngImage.
func (pi PngImage) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for PngImage.
func (pi PngImage) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for PngImage.
func (pi PngImage) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for PngImage.
func (pi PngImage) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for PngImage.
func (pi PngImage) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for PngImage.
func (pi PngImage) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for PngImage.
func (pi PngImage) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for PngImage.
func (pi PngImage) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for PngImage.
func (pi PngImage) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PngImage.
PngLayer describes the settings to produce a PNG image from the input video.
type PngLayer struct { // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (pl PngLayer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for PngLayer.
func (pl PngLayer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PngLayer.
PresentationTimeRange the presentation time range, this is asset related and not recommended for Account Filter.
type PresentationTimeRange struct { // StartTimestamp - The absolute start time boundary. StartTimestamp *int64 `json:"startTimestamp,omitempty"` // EndTimestamp - The absolute end time boundary. EndTimestamp *int64 `json:"endTimestamp,omitempty"` // PresentationWindowDuration - The relative to end sliding window. PresentationWindowDuration *int64 `json:"presentationWindowDuration,omitempty"` // LiveBackoffDuration - The relative to end right edge. LiveBackoffDuration *int64 `json:"liveBackoffDuration,omitempty"` // Timescale - The time scale of time stamps. Timescale *int64 `json:"timescale,omitempty"` // ForceEndTimestamp - The indicator of forcing existing of end time stamp. ForceEndTimestamp *bool `json:"forceEndTimestamp,omitempty"` }
Preset base type for all Presets, which define the recipe or instructions on how the input media files should be processed.
type Preset struct { // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (p Preset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for Preset.
func (p Preset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for Preset.
func (p Preset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for Preset.
func (p Preset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for Preset.
func (p Preset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for Preset.
func (p Preset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for Preset.
func (p Preset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for Preset.
func (p Preset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for Preset.
func (p Preset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Preset.
Priority enumerates the values for priority.
type Priority string
const ( // PriorityHigh Used for TransformOutputs that should take precedence over others. PriorityHigh Priority = "High" // PriorityLow Used for TransformOutputs that can be generated after Normal and High priority // TransformOutputs. PriorityLow Priority = "Low" // PriorityNormal Used for TransformOutputs that can be generated at Normal priority. PriorityNormal Priority = "Normal" )
func PossiblePriorityValues() []Priority
PossiblePriorityValues returns an array of possible values for the Priority const type.
PrivateEndpoint the Private Endpoint resource.
type PrivateEndpoint struct { // ID - READ-ONLY; The ARM identifier for Private Endpoint ID *string `json:"id,omitempty"` }
func (peVar PrivateEndpoint) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PrivateEndpoint.
PrivateEndpointConnection the Private Endpoint Connection resource.
type PrivateEndpointConnection struct { autorest.Response `json:"-"` // PrivateEndpointConnectionProperties - Resource properties. *PrivateEndpointConnectionProperties `json:"properties,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (pec PrivateEndpointConnection) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PrivateEndpointConnection.
func (pec *PrivateEndpointConnection) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for PrivateEndpointConnection struct.
PrivateEndpointConnectionListResult list of private endpoint connection associated with the specified storage account
type PrivateEndpointConnectionListResult struct { autorest.Response `json:"-"` // Value - Array of private endpoint connections Value *[]PrivateEndpointConnection `json:"value,omitempty"` }
PrivateEndpointConnectionProperties properties of the PrivateEndpointConnectProperties.
type PrivateEndpointConnectionProperties struct { // PrivateEndpoint - The resource of private end point. PrivateEndpoint *PrivateEndpoint `json:"privateEndpoint,omitempty"` // PrivateLinkServiceConnectionState - A collection of information about the state of the connection between service consumer and provider. PrivateLinkServiceConnectionState *PrivateLinkServiceConnectionState `json:"privateLinkServiceConnectionState,omitempty"` // ProvisioningState - The provisioning state of the private endpoint connection resource. Possible values include: 'PrivateEndpointConnectionProvisioningStateSucceeded', 'PrivateEndpointConnectionProvisioningStateCreating', 'PrivateEndpointConnectionProvisioningStateDeleting', 'PrivateEndpointConnectionProvisioningStateFailed' ProvisioningState PrivateEndpointConnectionProvisioningState `json:"provisioningState,omitempty"` }
PrivateEndpointConnectionProvisioningState enumerates the values for private endpoint connection provisioning state.
type PrivateEndpointConnectionProvisioningState string
const ( // PrivateEndpointConnectionProvisioningStateCreating ... PrivateEndpointConnectionProvisioningStateCreating PrivateEndpointConnectionProvisioningState = "Creating" // PrivateEndpointConnectionProvisioningStateDeleting ... PrivateEndpointConnectionProvisioningStateDeleting PrivateEndpointConnectionProvisioningState = "Deleting" // PrivateEndpointConnectionProvisioningStateFailed ... PrivateEndpointConnectionProvisioningStateFailed PrivateEndpointConnectionProvisioningState = "Failed" // PrivateEndpointConnectionProvisioningStateSucceeded ... PrivateEndpointConnectionProvisioningStateSucceeded PrivateEndpointConnectionProvisioningState = "Succeeded" )
func PossiblePrivateEndpointConnectionProvisioningStateValues() []PrivateEndpointConnectionProvisioningState
PossiblePrivateEndpointConnectionProvisioningStateValues returns an array of possible values for the PrivateEndpointConnectionProvisioningState const type.
PrivateEndpointConnectionsClient is the client for the PrivateEndpointConnections methods of the Media service.
type PrivateEndpointConnectionsClient struct { BaseClient }
func NewPrivateEndpointConnectionsClient(subscriptionID string) PrivateEndpointConnectionsClient
NewPrivateEndpointConnectionsClient creates an instance of the PrivateEndpointConnectionsClient client.
func NewPrivateEndpointConnectionsClientWithBaseURI(baseURI string, subscriptionID string) PrivateEndpointConnectionsClient
NewPrivateEndpointConnectionsClientWithBaseURI creates an instance of the PrivateEndpointConnectionsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client PrivateEndpointConnectionsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, name string, parameters PrivateEndpointConnection) (result PrivateEndpointConnection, err error)
CreateOrUpdate update private endpoint connection. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. parameters - the request parameters
func (client PrivateEndpointConnectionsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, name string, parameters PrivateEndpointConnection) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client PrivateEndpointConnectionsClient) CreateOrUpdateResponder(resp *http.Response) (result PrivateEndpointConnection, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client PrivateEndpointConnectionsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client PrivateEndpointConnectionsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, name string) (result autorest.Response, err error)
Delete delete private endpoint connection. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client PrivateEndpointConnectionsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, name string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client PrivateEndpointConnectionsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client PrivateEndpointConnectionsClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client PrivateEndpointConnectionsClient) Get(ctx context.Context, resourceGroupName string, accountName string, name string) (result PrivateEndpointConnection, err error)
Get get private endpoint connection. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client PrivateEndpointConnectionsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, name string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client PrivateEndpointConnectionsClient) GetResponder(resp *http.Response) (result PrivateEndpointConnection, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client PrivateEndpointConnectionsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client PrivateEndpointConnectionsClient) List(ctx context.Context, resourceGroupName string, accountName string) (result PrivateEndpointConnectionListResult, err error)
List get all private endpoint connections. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client PrivateEndpointConnectionsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client PrivateEndpointConnectionsClient) ListResponder(resp *http.Response) (result PrivateEndpointConnectionListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client PrivateEndpointConnectionsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
PrivateEndpointServiceConnectionStatus enumerates the values for private endpoint service connection status.
type PrivateEndpointServiceConnectionStatus string
const ( // Approved ... Approved PrivateEndpointServiceConnectionStatus = "Approved" // Pending ... Pending PrivateEndpointServiceConnectionStatus = "Pending" // Rejected ... Rejected PrivateEndpointServiceConnectionStatus = "Rejected" )
func PossiblePrivateEndpointServiceConnectionStatusValues() []PrivateEndpointServiceConnectionStatus
PossiblePrivateEndpointServiceConnectionStatusValues returns an array of possible values for the PrivateEndpointServiceConnectionStatus const type.
PrivateLinkResource a private link resource
type PrivateLinkResource struct { autorest.Response `json:"-"` // PrivateLinkResourceProperties - Resource properties. *PrivateLinkResourceProperties `json:"properties,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (plr PrivateLinkResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PrivateLinkResource.
func (plr *PrivateLinkResource) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for PrivateLinkResource struct.
PrivateLinkResourceListResult a list of private link resources
type PrivateLinkResourceListResult struct { autorest.Response `json:"-"` // Value - Array of private link resources Value *[]PrivateLinkResource `json:"value,omitempty"` }
PrivateLinkResourceProperties properties of a private link resource.
type PrivateLinkResourceProperties struct { // GroupID - READ-ONLY; The private link resource group id. GroupID *string `json:"groupId,omitempty"` // RequiredMembers - READ-ONLY; The private link resource required member names. RequiredMembers *[]string `json:"requiredMembers,omitempty"` // RequiredZoneNames - The private link resource Private link DNS zone name. RequiredZoneNames *[]string `json:"requiredZoneNames,omitempty"` }
func (plrp PrivateLinkResourceProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for PrivateLinkResourceProperties.
PrivateLinkResourcesClient is the client for the PrivateLinkResources methods of the Media service.
type PrivateLinkResourcesClient struct { BaseClient }
func NewPrivateLinkResourcesClient(subscriptionID string) PrivateLinkResourcesClient
NewPrivateLinkResourcesClient creates an instance of the PrivateLinkResourcesClient client.
func NewPrivateLinkResourcesClientWithBaseURI(baseURI string, subscriptionID string) PrivateLinkResourcesClient
NewPrivateLinkResourcesClientWithBaseURI creates an instance of the PrivateLinkResourcesClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client PrivateLinkResourcesClient) Get(ctx context.Context, resourceGroupName string, accountName string, name string) (result PrivateLinkResource, err error)
Get get group ID. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client PrivateLinkResourcesClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, name string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client PrivateLinkResourcesClient) GetResponder(resp *http.Response) (result PrivateLinkResource, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client PrivateLinkResourcesClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client PrivateLinkResourcesClient) List(ctx context.Context, resourceGroupName string, accountName string) (result PrivateLinkResourceListResult, err error)
List get list of group IDs. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client PrivateLinkResourcesClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client PrivateLinkResourcesClient) ListResponder(resp *http.Response) (result PrivateLinkResourceListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client PrivateLinkResourcesClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
PrivateLinkServiceConnectionState a collection of information about the state of the connection between service consumer and provider.
type PrivateLinkServiceConnectionState struct { // Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. Possible values include: 'Pending', 'Approved', 'Rejected' Status PrivateEndpointServiceConnectionStatus `json:"status,omitempty"` // Description - The reason for approval/rejection of the connection. Description *string `json:"description,omitempty"` // ActionsRequired - A message indicating if changes on the service provider require any updates on the consumer. ActionsRequired *string `json:"actionsRequired,omitempty"` }
Properties the service specification property.
type Properties struct { // ServiceSpecification - READ-ONLY; The service specifications. ServiceSpecification *ServiceSpecification `json:"serviceSpecification,omitempty"` }
func (p Properties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Properties.
Provider a resource provider.
type Provider struct { // ProviderName - The provider name. ProviderName *string `json:"providerName,omitempty"` }
ProxyResource the resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location
type ProxyResource struct { // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (pr ProxyResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ProxyResource.
Rectangle describes the properties of a rectangular window applied to the input media before processing it.
type Rectangle struct { // Left - The number of pixels from the left-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%). Left *string `json:"left,omitempty"` // Top - The number of pixels from the top-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%). Top *string `json:"top,omitempty"` // Width - The width of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%). Width *string `json:"width,omitempty"` // Height - The height of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%). Height *string `json:"height,omitempty"` }
Resource common fields that are returned in the response for all Azure Resource Manager resources
type Resource struct { // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (r Resource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Resource.
Rotation enumerates the values for rotation.
type Rotation string
const ( // RotationAuto Automatically detect and rotate as needed. RotationAuto Rotation = "Auto" // RotationNone Do not rotate the video. If the output format supports it, any metadata about rotation is // kept intact. RotationNone Rotation = "None" // RotationRotate0 Do not rotate the video but remove any metadata about the rotation. RotationRotate0 Rotation = "Rotate0" // RotationRotate180 Rotate 180 degrees clockwise. RotationRotate180 Rotation = "Rotate180" // RotationRotate270 Rotate 270 degrees clockwise. RotationRotate270 Rotation = "Rotate270" // RotationRotate90 Rotate 90 degrees clockwise. RotationRotate90 Rotation = "Rotate90" )
func PossibleRotationValues() []Rotation
PossibleRotationValues returns an array of possible values for the Rotation const type.
SelectAudioTrackByAttribute select audio tracks from the input by specifying an attribute and an attribute filter.
type SelectAudioTrackByAttribute struct { // Attribute - The TrackAttribute to filter the tracks by. Possible values include: 'Bitrate', 'Language' Attribute TrackAttribute `json:"attribute,omitempty"` // Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks. Possible values include: 'All', 'Top', 'Bottom', 'ValueEquals' Filter AttributeFilter `json:"filter,omitempty"` // FilterValue - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. FilterValue *string `json:"filterValue,omitempty"` // ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks. Possible values include: 'FrontLeft', 'FrontRight', 'Center', 'LowFrequencyEffects', 'BackLeft', 'BackRight', 'StereoLeft', 'StereoRight' ChannelMapping ChannelMapping `json:"channelMapping,omitempty"` // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (satba SelectAudioTrackByAttribute) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByAttribute.
func (satba SelectAudioTrackByAttribute) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for SelectAudioTrackByAttribute.
SelectAudioTrackByID select audio tracks from the input by specifying a track identifier.
type SelectAudioTrackByID struct { // TrackID - Track identifier to select TrackID *int64 `json:"trackId,omitempty"` // ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks. Possible values include: 'FrontLeft', 'FrontRight', 'Center', 'LowFrequencyEffects', 'BackLeft', 'BackRight', 'StereoLeft', 'StereoRight' ChannelMapping ChannelMapping `json:"channelMapping,omitempty"` // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (satbi SelectAudioTrackByID) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectAudioTrackByID.
func (satbi SelectAudioTrackByID) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for SelectAudioTrackByID.
SelectVideoTrackByAttribute select video tracks from the input by specifying an attribute and an attribute filter.
type SelectVideoTrackByAttribute struct { // Attribute - The TrackAttribute to filter the tracks by. Possible values include: 'Bitrate', 'Language' Attribute TrackAttribute `json:"attribute,omitempty"` // Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks. Possible values include: 'All', 'Top', 'Bottom', 'ValueEquals' Filter AttributeFilter `json:"filter,omitempty"` // FilterValue - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks. FilterValue *string `json:"filterValue,omitempty"` // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (svtba SelectVideoTrackByAttribute) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByAttribute.
func (svtba SelectVideoTrackByAttribute) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for SelectVideoTrackByAttribute.
SelectVideoTrackByID select video tracks from the input by specifying a track identifier.
type SelectVideoTrackByID struct { // TrackID - Track identifier to select TrackID *int64 `json:"trackId,omitempty"` // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (svtbi SelectVideoTrackByID) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for SelectVideoTrackByID.
func (svtbi SelectVideoTrackByID) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for SelectVideoTrackByID.
Service a Media Services account.
type Service struct { autorest.Response `json:"-"` // ServiceProperties - The resource properties. *ServiceProperties `json:"properties,omitempty"` // Identity - The Managed Identity for the Media Services account. Identity *ServiceIdentity `json:"identity,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // Tags - Resource tags. Tags map[string]*string `json:"tags"` // Location - The geo-location where the resource lives Location *string `json:"location,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (s Service) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Service.
func (s *Service) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for Service struct.
ServiceCollection a collection of MediaService items.
type ServiceCollection struct { autorest.Response `json:"-"` // Value - A collection of MediaService items. Value *[]Service `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (sc ServiceCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
ServiceCollectionIterator provides access to a complete listing of Service values.
type ServiceCollectionIterator struct {
// contains filtered or unexported fields
}
func NewServiceCollectionIterator(page ServiceCollectionPage) ServiceCollectionIterator
Creates a new instance of the ServiceCollectionIterator type.
func (iter *ServiceCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *ServiceCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter ServiceCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ServiceCollectionIterator) Response() ServiceCollection
Response returns the raw server response from the last page request.
func (iter ServiceCollectionIterator) Value() Service
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
ServiceCollectionPage contains a page of Service values.
type ServiceCollectionPage struct {
// contains filtered or unexported fields
}
func NewServiceCollectionPage(cur ServiceCollection, getNextPage func(context.Context, ServiceCollection) (ServiceCollection, error)) ServiceCollectionPage
Creates a new instance of the ServiceCollectionPage type.
func (page *ServiceCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *ServiceCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page ServiceCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ServiceCollectionPage) Response() ServiceCollection
Response returns the raw server response from the last page request.
func (page ServiceCollectionPage) Values() []Service
Values returns the slice of values for the current page or nil if there are no values.
ServiceIdentity ...
type ServiceIdentity struct { // Type - The identity type. Possible values include: 'ManagedIdentityTypeSystemAssigned', 'ManagedIdentityTypeNone' Type ManagedIdentityType `json:"type,omitempty"` // PrincipalID - READ-ONLY; The Principal ID of the identity. PrincipalID *string `json:"principalId,omitempty"` // TenantID - READ-ONLY; The Tenant ID of the identity. TenantID *string `json:"tenantId,omitempty"` }
func (si ServiceIdentity) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ServiceIdentity.
ServiceProperties properties of the Media Services account.
type ServiceProperties struct { // MediaServiceID - READ-ONLY; The Media Services account ID. MediaServiceID *uuid.UUID `json:"mediaServiceId,omitempty"` // StorageAccounts - The storage accounts for this resource. StorageAccounts *[]StorageAccount `json:"storageAccounts,omitempty"` // StorageAuthentication - Possible values include: 'StorageAuthenticationSystem', 'StorageAuthenticationManagedIdentity' StorageAuthentication StorageAuthentication `json:"storageAuthentication,omitempty"` // Encryption - The account encryption properties. Encryption *AccountEncryption `json:"encryption,omitempty"` }
func (sp ServiceProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ServiceProperties.
ServiceSpecification the service metric specifications.
type ServiceSpecification struct { // LogSpecifications - READ-ONLY; List of log specifications. LogSpecifications *[]LogSpecification `json:"logSpecifications,omitempty"` // MetricSpecifications - READ-ONLY; List of metric specifications. MetricSpecifications *[]MetricSpecification `json:"metricSpecifications,omitempty"` }
func (ss ServiceSpecification) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ServiceSpecification.
StandardEncoderPreset describes all the settings to be used when encoding the input video with the Standard Encoder.
type StandardEncoderPreset struct { // Filters - One or more filtering operations that are applied to the input media before encoding. Filters *Filters `json:"filters,omitempty"` // Codecs - The list of codecs to be used when encoding the input video. Codecs *[]BasicCodec `json:"codecs,omitempty"` // Formats - The list of outputs to be produced by the encoder. Formats *[]BasicFormat `json:"formats,omitempty"` // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (sep StandardEncoderPreset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for StandardEncoderPreset.
func (sep StandardEncoderPreset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StandardEncoderPreset.
func (sep *StandardEncoderPreset) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for StandardEncoderPreset struct.
StorageAccount the storage account details.
type StorageAccount struct { // ID - The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts. ID *string `json:"id,omitempty"` // Type - The type of the storage account. Possible values include: 'Primary', 'Secondary' Type StorageAccountType `json:"type,omitempty"` }
StorageAccountType enumerates the values for storage account type.
type StorageAccountType string
const ( // Primary The primary storage account for the Media Services account. Primary StorageAccountType = "Primary" // Secondary A secondary storage account for the Media Services account. Secondary StorageAccountType = "Secondary" )
func PossibleStorageAccountTypeValues() []StorageAccountType
PossibleStorageAccountTypeValues returns an array of possible values for the StorageAccountType const type.
StorageAuthentication enumerates the values for storage authentication.
type StorageAuthentication string
const ( // StorageAuthenticationManagedIdentity Managed Identity authentication. StorageAuthenticationManagedIdentity StorageAuthentication = "ManagedIdentity" // StorageAuthenticationSystem System authentication. StorageAuthenticationSystem StorageAuthentication = "System" )
func PossibleStorageAuthenticationValues() []StorageAuthentication
PossibleStorageAuthenticationValues returns an array of possible values for the StorageAuthentication const type.
StorageEncryptedAssetDecryptionData data needed to decrypt asset files encrypted with legacy storage encryption.
type StorageEncryptedAssetDecryptionData struct { autorest.Response `json:"-"` // Key - The Asset File storage encryption key. Key *[]byte `json:"key,omitempty"` // AssetFileEncryptionMetadata - Asset File encryption metadata. AssetFileEncryptionMetadata *[]AssetFileEncryptionMetadata `json:"assetFileEncryptionMetadata,omitempty"` }
StreamOptionsFlag enumerates the values for stream options flag.
type StreamOptionsFlag string
const ( // Default Live streaming with no special latency optimizations. Default StreamOptionsFlag = "Default" // LowLatency The live event provides lower end to end latency by reducing its internal buffers. This could // result in more client buffering during playback if network bandwidth is low. LowLatency StreamOptionsFlag = "LowLatency" )
func PossibleStreamOptionsFlagValues() []StreamOptionsFlag
PossibleStreamOptionsFlagValues returns an array of possible values for the StreamOptionsFlag const type.
StreamingEndpoint the streaming endpoint.
type StreamingEndpoint struct { autorest.Response `json:"-"` // StreamingEndpointProperties - The streaming endpoint properties. *StreamingEndpointProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // Tags - Resource tags. Tags map[string]*string `json:"tags"` // Location - The geo-location where the resource lives Location *string `json:"location,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (se StreamingEndpoint) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingEndpoint.
func (se *StreamingEndpoint) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for StreamingEndpoint struct.
StreamingEndpointAccessControl streaming endpoint access control definition.
type StreamingEndpointAccessControl struct { // Akamai - The access control of Akamai Akamai *AkamaiAccessControl `json:"akamai,omitempty"` // IP - The IP access control of the streaming endpoint. IP *IPAccessControl `json:"ip,omitempty"` }
StreamingEndpointListResult the streaming endpoint list result.
type StreamingEndpointListResult struct { autorest.Response `json:"-"` // Value - The result of the List StreamingEndpoint operation. Value *[]StreamingEndpoint `json:"value,omitempty"` // OdataCount - The number of result. OdataCount *int32 `json:"@odata.count,omitempty"` // OdataNextLink - The link to the next set of results. Not empty if value contains incomplete list of streaming endpoints. OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (selr StreamingEndpointListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
StreamingEndpointListResultIterator provides access to a complete listing of StreamingEndpoint values.
type StreamingEndpointListResultIterator struct {
// contains filtered or unexported fields
}
func NewStreamingEndpointListResultIterator(page StreamingEndpointListResultPage) StreamingEndpointListResultIterator
Creates a new instance of the StreamingEndpointListResultIterator type.
func (iter *StreamingEndpointListResultIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *StreamingEndpointListResultIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter StreamingEndpointListResultIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter StreamingEndpointListResultIterator) Response() StreamingEndpointListResult
Response returns the raw server response from the last page request.
func (iter StreamingEndpointListResultIterator) Value() StreamingEndpoint
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
StreamingEndpointListResultPage contains a page of StreamingEndpoint values.
type StreamingEndpointListResultPage struct {
// contains filtered or unexported fields
}
func NewStreamingEndpointListResultPage(cur StreamingEndpointListResult, getNextPage func(context.Context, StreamingEndpointListResult) (StreamingEndpointListResult, error)) StreamingEndpointListResultPage
Creates a new instance of the StreamingEndpointListResultPage type.
func (page *StreamingEndpointListResultPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *StreamingEndpointListResultPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page StreamingEndpointListResultPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page StreamingEndpointListResultPage) Response() StreamingEndpointListResult
Response returns the raw server response from the last page request.
func (page StreamingEndpointListResultPage) Values() []StreamingEndpoint
Values returns the slice of values for the current page or nil if there are no values.
StreamingEndpointProperties the streaming endpoint properties.
type StreamingEndpointProperties struct { // Description - The streaming endpoint description. Description *string `json:"description,omitempty"` // ScaleUnits - The number of scale units. Use the Scale operation to adjust this value. ScaleUnits *int32 `json:"scaleUnits,omitempty"` // AvailabilitySetName - This feature is deprecated, do not set a value for this property. AvailabilitySetName *string `json:"availabilitySetName,omitempty"` // AccessControl - The access control definition of the streaming endpoint. AccessControl *StreamingEndpointAccessControl `json:"accessControl,omitempty"` // MaxCacheAge - Max cache age MaxCacheAge *int64 `json:"maxCacheAge,omitempty"` // CustomHostNames - The custom host names of the streaming endpoint CustomHostNames *[]string `json:"customHostNames,omitempty"` // HostName - READ-ONLY; The streaming endpoint host name. HostName *string `json:"hostName,omitempty"` // CdnEnabled - The CDN enabled flag. CdnEnabled *bool `json:"cdnEnabled,omitempty"` // CdnProvider - The CDN provider name. CdnProvider *string `json:"cdnProvider,omitempty"` // CdnProfile - The CDN profile name. CdnProfile *string `json:"cdnProfile,omitempty"` // ProvisioningState - READ-ONLY; The provisioning state of the streaming endpoint. ProvisioningState *string `json:"provisioningState,omitempty"` // ResourceState - READ-ONLY; The resource state of the streaming endpoint. Possible values include: 'StreamingEndpointResourceStateStopped', 'StreamingEndpointResourceStateStarting', 'StreamingEndpointResourceStateRunning', 'StreamingEndpointResourceStateStopping', 'StreamingEndpointResourceStateDeleting', 'StreamingEndpointResourceStateScaling' ResourceState StreamingEndpointResourceState `json:"resourceState,omitempty"` // CrossSiteAccessPolicies - The streaming endpoint access policies. CrossSiteAccessPolicies *CrossSiteAccessPolicies `json:"crossSiteAccessPolicies,omitempty"` // FreeTrialEndTime - READ-ONLY; The free trial expiration time. FreeTrialEndTime *date.Time `json:"freeTrialEndTime,omitempty"` // Created - READ-ONLY; The exact time the streaming endpoint was created. Created *date.Time `json:"created,omitempty"` // LastModified - READ-ONLY; The exact time the streaming endpoint was last modified. LastModified *date.Time `json:"lastModified,omitempty"` }
func (sep StreamingEndpointProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingEndpointProperties.
StreamingEndpointResourceState enumerates the values for streaming endpoint resource state.
type StreamingEndpointResourceState string
const ( // StreamingEndpointResourceStateDeleting The streaming endpoint is being deleted. StreamingEndpointResourceStateDeleting StreamingEndpointResourceState = "Deleting" // StreamingEndpointResourceStateRunning The streaming endpoint is running. It is able to stream content to // clients StreamingEndpointResourceStateRunning StreamingEndpointResourceState = "Running" // StreamingEndpointResourceStateScaling The streaming endpoint is increasing or decreasing scale units. StreamingEndpointResourceStateScaling StreamingEndpointResourceState = "Scaling" // StreamingEndpointResourceStateStarting The streaming endpoint is transitioning to the running state. StreamingEndpointResourceStateStarting StreamingEndpointResourceState = "Starting" // StreamingEndpointResourceStateStopped The initial state of a streaming endpoint after creation. Content // is not ready to be streamed from this endpoint. StreamingEndpointResourceStateStopped StreamingEndpointResourceState = "Stopped" // StreamingEndpointResourceStateStopping The streaming endpoint is transitioning to the stopped state. StreamingEndpointResourceStateStopping StreamingEndpointResourceState = "Stopping" )
func PossibleStreamingEndpointResourceStateValues() []StreamingEndpointResourceState
PossibleStreamingEndpointResourceStateValues returns an array of possible values for the StreamingEndpointResourceState const type.
StreamingEndpointsClient is the client for the StreamingEndpoints methods of the Media service.
type StreamingEndpointsClient struct { BaseClient }
func NewStreamingEndpointsClient(subscriptionID string) StreamingEndpointsClient
NewStreamingEndpointsClient creates an instance of the StreamingEndpointsClient client.
func NewStreamingEndpointsClientWithBaseURI(baseURI string, subscriptionID string) StreamingEndpointsClient
NewStreamingEndpointsClientWithBaseURI creates an instance of the StreamingEndpointsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client StreamingEndpointsClient) Create(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEndpoint, autoStart *bool) (result StreamingEndpointsCreateFuture, err error)
Create creates a streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24. parameters - streaming endpoint properties needed for creation. autoStart - the flag indicates if the resource should be automatically started on creation.
func (client StreamingEndpointsClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEndpoint, autoStart *bool) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client StreamingEndpointsClient) CreateResponder(resp *http.Response) (result StreamingEndpoint, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) CreateSender(req *http.Request) (future StreamingEndpointsCreateFuture, err error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (result StreamingEndpointsDeleteFuture, err error)
Delete deletes a streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24.
func (client StreamingEndpointsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client StreamingEndpointsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) DeleteSender(req *http.Request) (future StreamingEndpointsDeleteFuture, err error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Get(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (result StreamingEndpoint, err error)
Get gets a streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24.
func (client StreamingEndpointsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client StreamingEndpointsClient) GetResponder(resp *http.Response) (result StreamingEndpoint, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) List(ctx context.Context, resourceGroupName string, accountName string) (result StreamingEndpointListResultPage, err error)
List lists the streaming endpoints in the account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name.
func (client StreamingEndpointsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string) (result StreamingEndpointListResultIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client StreamingEndpointsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string) (*http.Request, error)
ListPreparer prepares the List request.
func (client StreamingEndpointsClient) ListResponder(resp *http.Response) (result StreamingEndpointListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Scale(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEntityScaleUnit) (result StreamingEndpointsScaleFuture, err error)
Scale scales an existing streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24. parameters - streaming endpoint scale parameters
func (client StreamingEndpointsClient) ScalePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEntityScaleUnit) (*http.Request, error)
ScalePreparer prepares the Scale request.
func (client StreamingEndpointsClient) ScaleResponder(resp *http.Response) (result autorest.Response, err error)
ScaleResponder handles the response to the Scale request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) ScaleSender(req *http.Request) (future StreamingEndpointsScaleFuture, err error)
ScaleSender sends the Scale request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Start(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (result StreamingEndpointsStartFuture, err error)
Start starts an existing streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24.
func (client StreamingEndpointsClient) StartPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (*http.Request, error)
StartPreparer prepares the Start request.
func (client StreamingEndpointsClient) StartResponder(resp *http.Response) (result autorest.Response, err error)
StartResponder handles the response to the Start request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) StartSender(req *http.Request) (future StreamingEndpointsStartFuture, err error)
StartSender sends the Start request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Stop(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (result StreamingEndpointsStopFuture, err error)
Stop stops an existing streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24.
func (client StreamingEndpointsClient) StopPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string) (*http.Request, error)
StopPreparer prepares the Stop request.
func (client StreamingEndpointsClient) StopResponder(resp *http.Response) (result autorest.Response, err error)
StopResponder handles the response to the Stop request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) StopSender(req *http.Request) (future StreamingEndpointsStopFuture, err error)
StopSender sends the Stop request. The method will close the http.Response Body if it receives an error.
func (client StreamingEndpointsClient) Update(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEndpoint) (result StreamingEndpointsUpdateFuture, err error)
Update updates a existing streaming endpoint. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingEndpointName - the name of the streaming endpoint, maximum length is 24. parameters - streaming endpoint properties needed for creation.
func (client StreamingEndpointsClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingEndpointName string, parameters StreamingEndpoint) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client StreamingEndpointsClient) UpdateResponder(resp *http.Response) (result StreamingEndpoint, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client StreamingEndpointsClient) UpdateSender(req *http.Request) (future StreamingEndpointsUpdateFuture, err error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
StreamingEndpointsCreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsCreateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (StreamingEndpoint, error) }
func (future *StreamingEndpointsCreateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEndpointsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsDeleteFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (autorest.Response, error) }
func (future *StreamingEndpointsDeleteFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEndpointsScaleFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsScaleFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (autorest.Response, error) }
func (future *StreamingEndpointsScaleFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEndpointsStartFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsStartFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (autorest.Response, error) }
func (future *StreamingEndpointsStartFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEndpointsStopFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsStopFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (autorest.Response, error) }
func (future *StreamingEndpointsStopFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEndpointsUpdateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type StreamingEndpointsUpdateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(StreamingEndpointsClient) (StreamingEndpoint, error) }
func (future *StreamingEndpointsUpdateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
StreamingEntityScaleUnit scale units definition
type StreamingEntityScaleUnit struct { // ScaleUnit - The scale unit number of the streaming endpoint. ScaleUnit *int32 `json:"scaleUnit,omitempty"` }
StreamingLocator a Streaming Locator resource
type StreamingLocator struct { autorest.Response `json:"-"` *StreamingLocatorProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (sl StreamingLocator) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingLocator.
func (sl *StreamingLocator) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for StreamingLocator struct.
StreamingLocatorCollection a collection of StreamingLocator items.
type StreamingLocatorCollection struct { autorest.Response `json:"-"` // Value - A collection of StreamingLocator items. Value *[]StreamingLocator `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (slc StreamingLocatorCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
StreamingLocatorCollectionIterator provides access to a complete listing of StreamingLocator values.
type StreamingLocatorCollectionIterator struct {
// contains filtered or unexported fields
}
func NewStreamingLocatorCollectionIterator(page StreamingLocatorCollectionPage) StreamingLocatorCollectionIterator
Creates a new instance of the StreamingLocatorCollectionIterator type.
func (iter *StreamingLocatorCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *StreamingLocatorCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter StreamingLocatorCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter StreamingLocatorCollectionIterator) Response() StreamingLocatorCollection
Response returns the raw server response from the last page request.
func (iter StreamingLocatorCollectionIterator) Value() StreamingLocator
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
StreamingLocatorCollectionPage contains a page of StreamingLocator values.
type StreamingLocatorCollectionPage struct {
// contains filtered or unexported fields
}
func NewStreamingLocatorCollectionPage(cur StreamingLocatorCollection, getNextPage func(context.Context, StreamingLocatorCollection) (StreamingLocatorCollection, error)) StreamingLocatorCollectionPage
Creates a new instance of the StreamingLocatorCollectionPage type.
func (page *StreamingLocatorCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *StreamingLocatorCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page StreamingLocatorCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page StreamingLocatorCollectionPage) Response() StreamingLocatorCollection
Response returns the raw server response from the last page request.
func (page StreamingLocatorCollectionPage) Values() []StreamingLocator
Values returns the slice of values for the current page or nil if there are no values.
StreamingLocatorContentKey class for content key in Streaming Locator
type StreamingLocatorContentKey struct { // ID - ID of Content Key ID *uuid.UUID `json:"id,omitempty"` // Type - READ-ONLY; Encryption type of Content Key. Possible values include: 'StreamingLocatorContentKeyTypeCommonEncryptionCenc', 'StreamingLocatorContentKeyTypeCommonEncryptionCbcs', 'StreamingLocatorContentKeyTypeEnvelopeEncryption' Type StreamingLocatorContentKeyType `json:"type,omitempty"` // LabelReferenceInStreamingPolicy - Label of Content Key as specified in the Streaming Policy LabelReferenceInStreamingPolicy *string `json:"labelReferenceInStreamingPolicy,omitempty"` // Value - Value of Content Key Value *string `json:"value,omitempty"` // PolicyName - READ-ONLY; ContentKeyPolicy used by Content Key PolicyName *string `json:"policyName,omitempty"` // Tracks - READ-ONLY; Tracks which use this Content Key Tracks *[]TrackSelection `json:"tracks,omitempty"` }
func (slck StreamingLocatorContentKey) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingLocatorContentKey.
StreamingLocatorContentKeyType enumerates the values for streaming locator content key type.
type StreamingLocatorContentKeyType string
const ( // StreamingLocatorContentKeyTypeCommonEncryptionCbcs Common Encryption using CBCS StreamingLocatorContentKeyTypeCommonEncryptionCbcs StreamingLocatorContentKeyType = "CommonEncryptionCbcs" // StreamingLocatorContentKeyTypeCommonEncryptionCenc Common Encryption using CENC StreamingLocatorContentKeyTypeCommonEncryptionCenc StreamingLocatorContentKeyType = "CommonEncryptionCenc" // StreamingLocatorContentKeyTypeEnvelopeEncryption Envelope Encryption StreamingLocatorContentKeyTypeEnvelopeEncryption StreamingLocatorContentKeyType = "EnvelopeEncryption" )
func PossibleStreamingLocatorContentKeyTypeValues() []StreamingLocatorContentKeyType
PossibleStreamingLocatorContentKeyTypeValues returns an array of possible values for the StreamingLocatorContentKeyType const type.
StreamingLocatorProperties properties of the Streaming Locator.
type StreamingLocatorProperties struct { // AssetName - Asset Name AssetName *string `json:"assetName,omitempty"` // Created - READ-ONLY; The creation time of the Streaming Locator. Created *date.Time `json:"created,omitempty"` // StartTime - The start time of the Streaming Locator. StartTime *date.Time `json:"startTime,omitempty"` // EndTime - The end time of the Streaming Locator. EndTime *date.Time `json:"endTime,omitempty"` // StreamingLocatorID - The StreamingLocatorId of the Streaming Locator. StreamingLocatorID *uuid.UUID `json:"streamingLocatorId,omitempty"` // StreamingPolicyName - Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming' StreamingPolicyName *string `json:"streamingPolicyName,omitempty"` // DefaultContentKeyPolicyName - Name of the default ContentKeyPolicy used by this Streaming Locator. DefaultContentKeyPolicyName *string `json:"defaultContentKeyPolicyName,omitempty"` // ContentKeys - The ContentKeys used by this Streaming Locator. ContentKeys *[]StreamingLocatorContentKey `json:"contentKeys,omitempty"` // AlternativeMediaID - Alternative Media ID of this Streaming Locator AlternativeMediaID *string `json:"alternativeMediaId,omitempty"` // Filters - A list of asset or account filters which apply to this streaming locator Filters *[]string `json:"filters,omitempty"` }
func (slp StreamingLocatorProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingLocatorProperties.
StreamingLocatorsClient is the client for the StreamingLocators methods of the Media service.
type StreamingLocatorsClient struct { BaseClient }
func NewStreamingLocatorsClient(subscriptionID string) StreamingLocatorsClient
NewStreamingLocatorsClient creates an instance of the StreamingLocatorsClient client.
func NewStreamingLocatorsClientWithBaseURI(baseURI string, subscriptionID string) StreamingLocatorsClient
NewStreamingLocatorsClientWithBaseURI creates an instance of the StreamingLocatorsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client StreamingLocatorsClient) Create(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string, parameters StreamingLocator) (result StreamingLocator, err error)
Create create a Streaming Locator in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingLocatorName - the Streaming Locator name. parameters - the request parameters
func (client StreamingLocatorsClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string, parameters StreamingLocator) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client StreamingLocatorsClient) CreateResponder(resp *http.Response) (result StreamingLocator, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) CreateSender(req *http.Request) (*http.Response, error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client StreamingLocatorsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (result autorest.Response, err error)
Delete deletes a Streaming Locator in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingLocatorName - the Streaming Locator name.
func (client StreamingLocatorsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client StreamingLocatorsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client StreamingLocatorsClient) Get(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (result StreamingLocator, err error)
Get get the details of a Streaming Locator in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingLocatorName - the Streaming Locator name.
func (client StreamingLocatorsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client StreamingLocatorsClient) GetResponder(resp *http.Response) (result StreamingLocator, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client StreamingLocatorsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingLocatorCollectionPage, err error)
List lists the Streaming Locators in the account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filter - restricts the set of items returned. top - specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n. orderby - specifies the key by which the result collection should be ordered.
func (client StreamingLocatorsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingLocatorCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client StreamingLocatorsClient) ListContentKeys(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (result ListContentKeysResponse, err error)
ListContentKeys list Content Keys used by this Streaming Locator Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingLocatorName - the Streaming Locator name.
func (client StreamingLocatorsClient) ListContentKeysPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (*http.Request, error)
ListContentKeysPreparer prepares the ListContentKeys request.
func (client StreamingLocatorsClient) ListContentKeysResponder(resp *http.Response) (result ListContentKeysResponse, err error)
ListContentKeysResponder handles the response to the ListContentKeys request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) ListContentKeysSender(req *http.Request) (*http.Response, error)
ListContentKeysSender sends the ListContentKeys request. The method will close the http.Response Body if it receives an error.
func (client StreamingLocatorsClient) ListPaths(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (result ListPathsResponse, err error)
ListPaths list Paths supported by this Streaming Locator Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingLocatorName - the Streaming Locator name.
func (client StreamingLocatorsClient) ListPathsPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingLocatorName string) (*http.Request, error)
ListPathsPreparer prepares the ListPaths request.
func (client StreamingLocatorsClient) ListPathsResponder(resp *http.Response) (result ListPathsResponse, err error)
ListPathsResponder handles the response to the ListPaths request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) ListPathsSender(req *http.Request) (*http.Response, error)
ListPathsSender sends the ListPaths request. The method will close the http.Response Body if it receives an error.
func (client StreamingLocatorsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client StreamingLocatorsClient) ListResponder(resp *http.Response) (result StreamingLocatorCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client StreamingLocatorsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
StreamingPath class of paths for streaming
type StreamingPath struct { // StreamingProtocol - Streaming protocol. Possible values include: 'StreamingPolicyStreamingProtocolHls', 'StreamingPolicyStreamingProtocolDash', 'StreamingPolicyStreamingProtocolSmoothStreaming', 'StreamingPolicyStreamingProtocolDownload' StreamingProtocol StreamingPolicyStreamingProtocol `json:"streamingProtocol,omitempty"` // EncryptionScheme - Encryption scheme. Possible values include: 'EncryptionSchemeNoEncryption', 'EncryptionSchemeEnvelopeEncryption', 'EncryptionSchemeCommonEncryptionCenc', 'EncryptionSchemeCommonEncryptionCbcs' EncryptionScheme EncryptionScheme `json:"encryptionScheme,omitempty"` // Paths - Streaming paths for each protocol and encryptionScheme pair Paths *[]string `json:"paths,omitempty"` }
StreamingPoliciesClient is the client for the StreamingPolicies methods of the Media service.
type StreamingPoliciesClient struct { BaseClient }
func NewStreamingPoliciesClient(subscriptionID string) StreamingPoliciesClient
NewStreamingPoliciesClient creates an instance of the StreamingPoliciesClient client.
func NewStreamingPoliciesClientWithBaseURI(baseURI string, subscriptionID string) StreamingPoliciesClient
NewStreamingPoliciesClientWithBaseURI creates an instance of the StreamingPoliciesClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client StreamingPoliciesClient) Create(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string, parameters StreamingPolicy) (result StreamingPolicy, err error)
Create create a Streaming Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingPolicyName - the Streaming Policy name. parameters - the request parameters
func (client StreamingPoliciesClient) CreatePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string, parameters StreamingPolicy) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client StreamingPoliciesClient) CreateResponder(resp *http.Response) (result StreamingPolicy, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client StreamingPoliciesClient) CreateSender(req *http.Request) (*http.Response, error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client StreamingPoliciesClient) Delete(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string) (result autorest.Response, err error)
Delete deletes a Streaming Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingPolicyName - the Streaming Policy name.
func (client StreamingPoliciesClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client StreamingPoliciesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client StreamingPoliciesClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client StreamingPoliciesClient) Get(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string) (result StreamingPolicy, err error)
Get get the details of a Streaming Policy in the Media Services account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. streamingPolicyName - the Streaming Policy name.
func (client StreamingPoliciesClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, streamingPolicyName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client StreamingPoliciesClient) GetResponder(resp *http.Response) (result StreamingPolicy, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client StreamingPoliciesClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client StreamingPoliciesClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingPolicyCollectionPage, err error)
List lists the Streaming Policies in the account Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filter - restricts the set of items returned. top - specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n. orderby - specifies the key by which the result collection should be ordered.
func (client StreamingPoliciesClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingPolicyCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client StreamingPoliciesClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client StreamingPoliciesClient) ListResponder(resp *http.Response) (result StreamingPolicyCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client StreamingPoliciesClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
StreamingPolicy a Streaming Policy resource
type StreamingPolicy struct { autorest.Response `json:"-"` *StreamingPolicyProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (sp StreamingPolicy) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingPolicy.
func (sp *StreamingPolicy) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for StreamingPolicy struct.
StreamingPolicyCollection a collection of StreamingPolicy items.
type StreamingPolicyCollection struct { autorest.Response `json:"-"` // Value - A collection of StreamingPolicy items. Value *[]StreamingPolicy `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (spc StreamingPolicyCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
StreamingPolicyCollectionIterator provides access to a complete listing of StreamingPolicy values.
type StreamingPolicyCollectionIterator struct {
// contains filtered or unexported fields
}
func NewStreamingPolicyCollectionIterator(page StreamingPolicyCollectionPage) StreamingPolicyCollectionIterator
Creates a new instance of the StreamingPolicyCollectionIterator type.
func (iter *StreamingPolicyCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *StreamingPolicyCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter StreamingPolicyCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter StreamingPolicyCollectionIterator) Response() StreamingPolicyCollection
Response returns the raw server response from the last page request.
func (iter StreamingPolicyCollectionIterator) Value() StreamingPolicy
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
StreamingPolicyCollectionPage contains a page of StreamingPolicy values.
type StreamingPolicyCollectionPage struct {
// contains filtered or unexported fields
}
func NewStreamingPolicyCollectionPage(cur StreamingPolicyCollection, getNextPage func(context.Context, StreamingPolicyCollection) (StreamingPolicyCollection, error)) StreamingPolicyCollectionPage
Creates a new instance of the StreamingPolicyCollectionPage type.
func (page *StreamingPolicyCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *StreamingPolicyCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page StreamingPolicyCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page StreamingPolicyCollectionPage) Response() StreamingPolicyCollection
Response returns the raw server response from the last page request.
func (page StreamingPolicyCollectionPage) Values() []StreamingPolicy
Values returns the slice of values for the current page or nil if there are no values.
StreamingPolicyContentKey class to specify properties of content key
type StreamingPolicyContentKey struct { // Label - Label can be used to specify Content Key when creating a Streaming Locator Label *string `json:"label,omitempty"` // PolicyName - Policy used by Content Key PolicyName *string `json:"policyName,omitempty"` // Tracks - Tracks which use this content key Tracks *[]TrackSelection `json:"tracks,omitempty"` }
StreamingPolicyContentKeys class to specify properties of all content keys in Streaming Policy
type StreamingPolicyContentKeys struct { // DefaultKey - Default content key for an encryption scheme DefaultKey *DefaultKey `json:"defaultKey,omitempty"` // KeyToTrackMappings - Representing tracks needs separate content key KeyToTrackMappings *[]StreamingPolicyContentKey `json:"keyToTrackMappings,omitempty"` }
StreamingPolicyFairPlayConfiguration class to specify configurations of FairPlay in Streaming Policy
type StreamingPolicyFairPlayConfiguration struct { // CustomLicenseAcquisitionURLTemplate - Template for the URL of the custom service delivering licenses to end user players. Not required when using Azure Media Services for issuing licenses. The template supports replaceable tokens that the service will update at runtime with the value specific to the request. The currently supported token values are {AlternativeMediaId}, which is replaced with the value of StreamingLocatorId.AlternativeMediaId, and {ContentKeyId}, which is replaced with the value of identifier of the key being requested. CustomLicenseAcquisitionURLTemplate *string `json:"customLicenseAcquisitionUrlTemplate,omitempty"` // AllowPersistentLicense - All license to be persistent or not AllowPersistentLicense *bool `json:"allowPersistentLicense,omitempty"` }
StreamingPolicyPlayReadyConfiguration class to specify configurations of PlayReady in Streaming Policy
type StreamingPolicyPlayReadyConfiguration struct { // CustomLicenseAcquisitionURLTemplate - Template for the URL of the custom service delivering licenses to end user players. Not required when using Azure Media Services for issuing licenses. The template supports replaceable tokens that the service will update at runtime with the value specific to the request. The currently supported token values are {AlternativeMediaId}, which is replaced with the value of StreamingLocatorId.AlternativeMediaId, and {ContentKeyId}, which is replaced with the value of identifier of the key being requested. CustomLicenseAcquisitionURLTemplate *string `json:"customLicenseAcquisitionUrlTemplate,omitempty"` // PlayReadyCustomAttributes - Custom attributes for PlayReady PlayReadyCustomAttributes *string `json:"playReadyCustomAttributes,omitempty"` }
StreamingPolicyProperties class to specify properties of Streaming Policy
type StreamingPolicyProperties struct { // Created - READ-ONLY; Creation time of Streaming Policy Created *date.Time `json:"created,omitempty"` // DefaultContentKeyPolicyName - Default ContentKey used by current Streaming Policy DefaultContentKeyPolicyName *string `json:"defaultContentKeyPolicyName,omitempty"` // EnvelopeEncryption - Configuration of EnvelopeEncryption EnvelopeEncryption *EnvelopeEncryption `json:"envelopeEncryption,omitempty"` // CommonEncryptionCenc - Configuration of CommonEncryptionCenc CommonEncryptionCenc *CommonEncryptionCenc `json:"commonEncryptionCenc,omitempty"` // CommonEncryptionCbcs - Configuration of CommonEncryptionCbcs CommonEncryptionCbcs *CommonEncryptionCbcs `json:"commonEncryptionCbcs,omitempty"` // NoEncryption - Configurations of NoEncryption NoEncryption *NoEncryption `json:"noEncryption,omitempty"` }
func (spp StreamingPolicyProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for StreamingPolicyProperties.
StreamingPolicyStreamingProtocol enumerates the values for streaming policy streaming protocol.
type StreamingPolicyStreamingProtocol string
const ( // StreamingPolicyStreamingProtocolDash DASH protocol StreamingPolicyStreamingProtocolDash StreamingPolicyStreamingProtocol = "Dash" // StreamingPolicyStreamingProtocolDownload Download protocol StreamingPolicyStreamingProtocolDownload StreamingPolicyStreamingProtocol = "Download" // StreamingPolicyStreamingProtocolHls HLS protocol StreamingPolicyStreamingProtocolHls StreamingPolicyStreamingProtocol = "Hls" // StreamingPolicyStreamingProtocolSmoothStreaming SmoothStreaming protocol StreamingPolicyStreamingProtocolSmoothStreaming StreamingPolicyStreamingProtocol = "SmoothStreaming" )
func PossibleStreamingPolicyStreamingProtocolValues() []StreamingPolicyStreamingProtocol
PossibleStreamingPolicyStreamingProtocolValues returns an array of possible values for the StreamingPolicyStreamingProtocol const type.
StreamingPolicyWidevineConfiguration class to specify configurations of Widevine in Streaming Policy
type StreamingPolicyWidevineConfiguration struct { // CustomLicenseAcquisitionURLTemplate - Template for the URL of the custom service delivering licenses to end user players. Not required when using Azure Media Services for issuing licenses. The template supports replaceable tokens that the service will update at runtime with the value specific to the request. The currently supported token values are {AlternativeMediaId}, which is replaced with the value of StreamingLocatorId.AlternativeMediaId, and {ContentKeyId}, which is replaced with the value of identifier of the key being requested. CustomLicenseAcquisitionURLTemplate *string `json:"customLicenseAcquisitionUrlTemplate,omitempty"` }
StretchMode enumerates the values for stretch mode.
type StretchMode string
const ( // StretchModeAutoFit Pad the output (with either letterbox or pillar box) to honor the output resolution, // while ensuring that the active video region in the output has the same aspect ratio as the input. For // example, if the input is 1920x1080 and the encoding preset asks for 1280x1280, then the output will be // at 1280x1280, which contains an inner rectangle of 1280x720 at aspect ratio of 16:9, and pillar box // regions 280 pixels wide at the left and right. StretchModeAutoFit StretchMode = "AutoFit" // StretchModeAutoSize Override the output resolution, and change it to match the display aspect ratio of // the input, without padding. For example, if the input is 1920x1080 and the encoding preset asks for // 1280x1280, then the value in the preset is overridden, and the output will be at 1280x720, which // maintains the input aspect ratio of 16:9. StretchModeAutoSize StretchMode = "AutoSize" // StretchModeNone Strictly respect the output resolution without considering the pixel aspect ratio or // display aspect ratio of the input video. StretchModeNone StretchMode = "None" )
func PossibleStretchModeValues() []StretchMode
PossibleStretchModeValues returns an array of possible values for the StretchMode const type.
SyncStorageKeysInput the input to the sync storage keys request.
type SyncStorageKeysInput struct { // ID - The ID of the storage account resource. ID *string `json:"id,omitempty"` }
SystemData metadata pertaining to creation and last modification of the resource.
type SystemData struct { // CreatedBy - The identity that created the resource. CreatedBy *string `json:"createdBy,omitempty"` // CreatedByType - The type of identity that created the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' CreatedByType CreatedByType `json:"createdByType,omitempty"` // CreatedAt - The timestamp of resource creation (UTC). CreatedAt *date.Time `json:"createdAt,omitempty"` // LastModifiedBy - The identity that last modified the resource. LastModifiedBy *string `json:"lastModifiedBy,omitempty"` // LastModifiedByType - The type of identity that last modified the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' LastModifiedByType CreatedByType `json:"lastModifiedByType,omitempty"` // LastModifiedAt - The timestamp of resource last modification (UTC) LastModifiedAt *date.Time `json:"lastModifiedAt,omitempty"` }
TrackAttribute enumerates the values for track attribute.
type TrackAttribute string
const ( // Bitrate The bitrate of the track. Bitrate TrackAttribute = "Bitrate" // Language The language of the track. Language TrackAttribute = "Language" )
func PossibleTrackAttributeValues() []TrackAttribute
PossibleTrackAttributeValues returns an array of possible values for the TrackAttribute const type.
TrackDescriptor base type for all TrackDescriptor types, which define the metadata and selection for tracks that should be processed by a Job
type TrackDescriptor struct { // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (td TrackDescriptor) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for TrackDescriptor.
func (td TrackDescriptor) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for TrackDescriptor.
TrackPropertyCompareOperation enumerates the values for track property compare operation.
type TrackPropertyCompareOperation string
const ( // TrackPropertyCompareOperationEqual Equal operation TrackPropertyCompareOperationEqual TrackPropertyCompareOperation = "Equal" // TrackPropertyCompareOperationUnknown Unknown track property compare operation TrackPropertyCompareOperationUnknown TrackPropertyCompareOperation = "Unknown" )
func PossibleTrackPropertyCompareOperationValues() []TrackPropertyCompareOperation
PossibleTrackPropertyCompareOperationValues returns an array of possible values for the TrackPropertyCompareOperation const type.
TrackPropertyCondition class to specify one track property condition
type TrackPropertyCondition struct { // Property - Track property type. Possible values include: 'TrackPropertyTypeUnknown', 'TrackPropertyTypeFourCC' Property TrackPropertyType `json:"property,omitempty"` // Operation - Track property condition operation. Possible values include: 'TrackPropertyCompareOperationUnknown', 'TrackPropertyCompareOperationEqual' Operation TrackPropertyCompareOperation `json:"operation,omitempty"` // Value - Track property value Value *string `json:"value,omitempty"` }
TrackPropertyType enumerates the values for track property type.
type TrackPropertyType string
const ( // TrackPropertyTypeFourCC Track FourCC TrackPropertyTypeFourCC TrackPropertyType = "FourCC" // TrackPropertyTypeUnknown Unknown track property TrackPropertyTypeUnknown TrackPropertyType = "Unknown" )
func PossibleTrackPropertyTypeValues() []TrackPropertyType
PossibleTrackPropertyTypeValues returns an array of possible values for the TrackPropertyType const type.
TrackSelection class to select a track
type TrackSelection struct { // TrackSelections - TrackSelections is a track property condition list which can specify track(s) TrackSelections *[]TrackPropertyCondition `json:"trackSelections,omitempty"` }
TrackedResource the resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
type TrackedResource struct { // Tags - Resource tags. Tags map[string]*string `json:"tags"` // Location - The geo-location where the resource lives Location *string `json:"location,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (tr TrackedResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for TrackedResource.
Transform a Transform encapsulates the rules or instructions for generating desired outputs from input media, such as by transcoding or by extracting insights. After the Transform is created, it can be applied to input media by creating Jobs.
type Transform struct { autorest.Response `json:"-"` // TransformProperties - The resource properties. *TransformProperties `json:"properties,omitempty"` // SystemData - READ-ONLY; The system metadata relating to this resource. SystemData *SystemData `json:"systemData,omitempty"` // ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" Type *string `json:"type,omitempty"` }
func (t Transform) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Transform.
func (t *Transform) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for Transform struct.
TransformCollection a collection of Transform items.
type TransformCollection struct { autorest.Response `json:"-"` // Value - A collection of Transform items. Value *[]Transform `json:"value,omitempty"` // OdataNextLink - A link to the next page of the collection (when the collection contains too many results to return in one response). OdataNextLink *string `json:"@odata.nextLink,omitempty"` }
func (tc TransformCollection) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
TransformCollectionIterator provides access to a complete listing of Transform values.
type TransformCollectionIterator struct {
// contains filtered or unexported fields
}
func NewTransformCollectionIterator(page TransformCollectionPage) TransformCollectionIterator
Creates a new instance of the TransformCollectionIterator type.
func (iter *TransformCollectionIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *TransformCollectionIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter TransformCollectionIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter TransformCollectionIterator) Response() TransformCollection
Response returns the raw server response from the last page request.
func (iter TransformCollectionIterator) Value() Transform
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
TransformCollectionPage contains a page of Transform values.
type TransformCollectionPage struct {
// contains filtered or unexported fields
}
func NewTransformCollectionPage(cur TransformCollection, getNextPage func(context.Context, TransformCollection) (TransformCollection, error)) TransformCollectionPage
Creates a new instance of the TransformCollectionPage type.
func (page *TransformCollectionPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *TransformCollectionPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page TransformCollectionPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page TransformCollectionPage) Response() TransformCollection
Response returns the raw server response from the last page request.
func (page TransformCollectionPage) Values() []Transform
Values returns the slice of values for the current page or nil if there are no values.
TransformOutput describes the properties of a TransformOutput, which are the rules to be applied while generating the desired output.
type TransformOutput struct { // OnError - A Transform can define more than one outputs. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with 'ContinueJob'. The default is 'StopProcessingJob'. Possible values include: 'StopProcessingJob', 'ContinueJob' OnError OnErrorType `json:"onError,omitempty"` // RelativePriority - Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal. Possible values include: 'PriorityLow', 'PriorityNormal', 'PriorityHigh' RelativePriority Priority `json:"relativePriority,omitempty"` // Preset - Preset that describes the operations that will be used to modify, transcode, or extract insights from the source file to generate the output. Preset BasicPreset `json:"preset,omitempty"` }
func (toVar *TransformOutput) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for TransformOutput struct.
TransformProperties a Transform.
type TransformProperties struct { // Created - READ-ONLY; The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format. Created *date.Time `json:"created,omitempty"` // Description - An optional verbose description of the Transform. Description *string `json:"description,omitempty"` // LastModified - READ-ONLY; The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format. LastModified *date.Time `json:"lastModified,omitempty"` // Outputs - An array of one or more TransformOutputs that the Transform should generate. Outputs *[]TransformOutput `json:"outputs,omitempty"` }
func (tp TransformProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for TransformProperties.
TransformsClient is the client for the Transforms methods of the Media service.
type TransformsClient struct { BaseClient }
func NewTransformsClient(subscriptionID string) TransformsClient
NewTransformsClient creates an instance of the TransformsClient client.
func NewTransformsClientWithBaseURI(baseURI string, subscriptionID string) TransformsClient
NewTransformsClientWithBaseURI creates an instance of the TransformsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client TransformsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, accountName string, transformName string, parameters Transform) (result Transform, err error)
CreateOrUpdate creates or updates a new Transform. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. parameters - the request parameters
func (client TransformsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, parameters Transform) (*http.Request, error)
CreateOrUpdatePreparer prepares the CreateOrUpdate request.
func (client TransformsClient) CreateOrUpdateResponder(resp *http.Response) (result Transform, err error)
CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.
func (client TransformsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)
CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.
func (client TransformsClient) Delete(ctx context.Context, resourceGroupName string, accountName string, transformName string) (result autorest.Response, err error)
Delete deletes a Transform. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name.
func (client TransformsClient) DeletePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client TransformsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client TransformsClient) DeleteSender(req *http.Request) (*http.Response, error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client TransformsClient) Get(ctx context.Context, resourceGroupName string, accountName string, transformName string) (result Transform, err error)
Get gets a Transform. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name.
func (client TransformsClient) GetPreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client TransformsClient) GetResponder(resp *http.Response) (result Transform, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
func (client TransformsClient) GetSender(req *http.Request) (*http.Response, error)
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client TransformsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, orderby string) (result TransformCollectionPage, err error)
List lists the Transforms in the account. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. filter - restricts the set of items returned. orderby - specifies the key by which the result collection should be ordered.
func (client TransformsClient) ListComplete(ctx context.Context, resourceGroupName string, accountName string, filter string, orderby string) (result TransformCollectionIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client TransformsClient) ListPreparer(ctx context.Context, resourceGroupName string, accountName string, filter string, orderby string) (*http.Request, error)
ListPreparer prepares the List request.
func (client TransformsClient) ListResponder(resp *http.Response) (result TransformCollection, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
func (client TransformsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
func (client TransformsClient) Update(ctx context.Context, resourceGroupName string, accountName string, transformName string, parameters Transform) (result Transform, err error)
Update updates a Transform. Parameters: resourceGroupName - the name of the resource group within the Azure subscription. accountName - the Media Services account name. transformName - the Transform name. parameters - the request parameters
func (client TransformsClient) UpdatePreparer(ctx context.Context, resourceGroupName string, accountName string, transformName string, parameters Transform) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client TransformsClient) UpdateResponder(resp *http.Response) (result Transform, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
func (client TransformsClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
TransportStreamFormat describes the properties for generating an MPEG-2 Transport Stream (ISO/IEC 13818-1) output video file(s).
type TransportStreamFormat struct { // OutputFiles - The list of output files to produce. Each entry in the list is a set of audio and video layer labels to be muxed together . OutputFiles *[]OutputFile `json:"outputFiles,omitempty"` // FilenamePattern - The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - An expansion macro that will use the name of the input video file. If the base name(the file suffix is not included) of the input video file is less than 32 characters long, the base name of input video files will be used. If the length of base name of the input video file exceeds 32 characters, the base name is truncated to the first 32 characters in total length. {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. {Resolution} - The video resolution. Any unsubstituted macros will be collapsed and removed from the filename. FilenamePattern *string `json:"filenamePattern,omitempty"` // OdataType - Possible values include: 'OdataTypeFormat', 'OdataTypeMicrosoftMediaImageFormat', 'OdataTypeMicrosoftMediaJpgFormat', 'OdataTypeMicrosoftMediaPngFormat', 'OdataTypeMicrosoftMediaMultiBitrateFormat', 'OdataTypeMicrosoftMediaMp4Format', 'OdataTypeMicrosoftMediaTransportStreamFormat' OdataType OdataTypeBasicFormat `json:"@odata.type,omitempty"` }
func (tsf TransportStreamFormat) AsBasicFormat() (BasicFormat, bool)
AsBasicFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsBasicImageFormat() (BasicImageFormat, bool)
AsBasicImageFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsBasicMultiBitrateFormat() (BasicMultiBitrateFormat, bool)
AsBasicMultiBitrateFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsFormat() (*Format, bool)
AsFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsImageFormat() (*ImageFormat, bool)
AsImageFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsJpgFormat() (*JpgFormat, bool)
AsJpgFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsMp4Format() (*Mp4Format, bool)
AsMp4Format is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsMultiBitrateFormat() (*MultiBitrateFormat, bool)
AsMultiBitrateFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsPngFormat() (*PngFormat, bool)
AsPngFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) AsTransportStreamFormat() (*TransportStreamFormat, bool)
AsTransportStreamFormat is the BasicFormat implementation for TransportStreamFormat.
func (tsf TransportStreamFormat) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for TransportStreamFormat.
UtcClipTime specifies the clip time as a Utc time position in the media file. The Utc time can point to a different position depending on whether the media file starts from a timestamp of zero or not.
type UtcClipTime struct { // Time - The time position on the timeline of the input media based on Utc time. Time *date.Time `json:"time,omitempty"` // OdataType - Possible values include: 'OdataTypeClipTime', 'OdataTypeMicrosoftMediaAbsoluteClipTime', 'OdataTypeMicrosoftMediaUtcClipTime' OdataType OdataTypeBasicClipTime `json:"@odata.type,omitempty"` }
func (uct UtcClipTime) AsAbsoluteClipTime() (*AbsoluteClipTime, bool)
AsAbsoluteClipTime is the BasicClipTime implementation for UtcClipTime.
func (uct UtcClipTime) AsBasicClipTime() (BasicClipTime, bool)
AsBasicClipTime is the BasicClipTime implementation for UtcClipTime.
func (uct UtcClipTime) AsClipTime() (*ClipTime, bool)
AsClipTime is the BasicClipTime implementation for UtcClipTime.
func (uct UtcClipTime) AsUtcClipTime() (*UtcClipTime, bool)
AsUtcClipTime is the BasicClipTime implementation for UtcClipTime.
func (uct UtcClipTime) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for UtcClipTime.
Video describes the basic properties for encoding the input video.
type Video struct { // KeyFrameInterval - The distance between two key frames. The value should be non-zero in the range [0.5, 20] seconds, specified in ISO 8601 format. The default is 2 seconds(PT2S). Note that this setting is ignored if VideoSyncMode.Passthrough is set, where the KeyFrameInterval value will follow the input source setting. KeyFrameInterval *string `json:"keyFrameInterval,omitempty"` // StretchMode - The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize. Possible values include: 'StretchModeNone', 'StretchModeAutoSize', 'StretchModeAutoFit' StretchMode StretchMode `json:"stretchMode,omitempty"` // SyncMode - The Video Sync Mode. Possible values include: 'VideoSyncModeAuto', 'VideoSyncModePassthrough', 'VideoSyncModeCfr', 'VideoSyncModeVfr' SyncMode VideoSyncMode `json:"syncMode,omitempty"` // Label - An optional label for the codec. The label can be used to control muxing behavior. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeCodec', 'OdataTypeMicrosoftMediaAudio', 'OdataTypeMicrosoftMediaAacAudio', 'OdataTypeMicrosoftMediaVideo', 'OdataTypeMicrosoftMediaH265Video', 'OdataTypeMicrosoftMediaCopyVideo', 'OdataTypeMicrosoftMediaImage', 'OdataTypeMicrosoftMediaCopyAudio', 'OdataTypeMicrosoftMediaH264Video', 'OdataTypeMicrosoftMediaJpgImage', 'OdataTypeMicrosoftMediaPngImage' OdataType OdataTypeBasicCodec `json:"@odata.type,omitempty"` }
func (vVar Video) AsAacAudio() (*AacAudio, bool)
AsAacAudio is the BasicCodec implementation for Video.
func (vVar Video) AsAudio() (*Audio, bool)
AsAudio is the BasicCodec implementation for Video.
func (vVar Video) AsBasicAudio() (BasicAudio, bool)
AsBasicAudio is the BasicCodec implementation for Video.
func (vVar Video) AsBasicCodec() (BasicCodec, bool)
AsBasicCodec is the BasicCodec implementation for Video.
func (vVar Video) AsBasicImage() (BasicImage, bool)
AsBasicImage is the BasicCodec implementation for Video.
func (vVar Video) AsBasicVideo() (BasicVideo, bool)
AsBasicVideo is the BasicCodec implementation for Video.
func (vVar Video) AsCodec() (*Codec, bool)
AsCodec is the BasicCodec implementation for Video.
func (vVar Video) AsCopyAudio() (*CopyAudio, bool)
AsCopyAudio is the BasicCodec implementation for Video.
func (vVar Video) AsCopyVideo() (*CopyVideo, bool)
AsCopyVideo is the BasicCodec implementation for Video.
func (vVar Video) AsH264Video() (*H264Video, bool)
AsH264Video is the BasicCodec implementation for Video.
func (vVar Video) AsH265Video() (*H265Video, bool)
AsH265Video is the BasicCodec implementation for Video.
func (vVar Video) AsImage() (*Image, bool)
AsImage is the BasicCodec implementation for Video.
func (vVar Video) AsJpgImage() (*JpgImage, bool)
AsJpgImage is the BasicCodec implementation for Video.
func (vVar Video) AsPngImage() (*PngImage, bool)
AsPngImage is the BasicCodec implementation for Video.
func (vVar Video) AsVideo() (*Video, bool)
AsVideo is the BasicCodec implementation for Video.
func (vVar Video) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for Video.
VideoAnalyzerPreset a video analyzer preset that extracts insights (rich metadata) from both audio and video, and outputs a JSON format file.
type VideoAnalyzerPreset struct { // InsightsToExtract - Defines the type of insights that you want the service to generate. The allowed values are 'AudioInsightsOnly', 'VideoInsightsOnly', and 'AllInsights'. The default is AllInsights. If you set this to AllInsights and the input is audio only, then only audio insights are generated. Similarly if the input is video only, then only video insights are generated. It is recommended that you not use AudioInsightsOnly if you expect some of your inputs to be video only; or use VideoInsightsOnly if you expect some of your inputs to be audio only. Your Jobs in such conditions would error out. Possible values include: 'AudioInsightsOnly', 'VideoInsightsOnly', 'AllInsights' InsightsToExtract InsightsType `json:"insightsToExtract,omitempty"` // AudioLanguage - The language for the audio payload in the input using the BCP-47 format of 'language tag-region' (e.g: 'en-US'). If you know the language of your content, it is recommended that you specify it. The language must be specified explicitly for AudioAnalysisMode::Basic, since automatic language detection is not included in basic mode. If the language isn't specified or set to null, automatic language detection will choose the first language detected and process with the selected language for the duration of the file. It does not currently support dynamically switching between languages after the first language is detected. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to 'en-US'." The list of supported languages is available here: https://go.microsoft.com/fwlink/?linkid=2109463 AudioLanguage *string `json:"audioLanguage,omitempty"` // Mode - Determines the set of audio analysis operations to be performed. If unspecified, the Standard AudioAnalysisMode would be chosen. Possible values include: 'Standard', 'Basic' Mode AudioAnalysisMode `json:"mode,omitempty"` // ExperimentalOptions - Dictionary containing key value pairs for parameters not exposed in the preset itself ExperimentalOptions map[string]*string `json:"experimentalOptions"` // OdataType - Possible values include: 'OdataTypePreset', 'OdataTypeMicrosoftMediaFaceDetectorPreset', 'OdataTypeMicrosoftMediaAudioAnalyzerPreset', 'OdataTypeMicrosoftMediaBuiltInStandardEncoderPreset', 'OdataTypeMicrosoftMediaStandardEncoderPreset', 'OdataTypeMicrosoftMediaVideoAnalyzerPreset' OdataType OdataTypeBasicPreset `json:"@odata.type,omitempty"` }
func (vap VideoAnalyzerPreset) AsAudioAnalyzerPreset() (*AudioAnalyzerPreset, bool)
AsAudioAnalyzerPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsBasicAudioAnalyzerPreset() (BasicAudioAnalyzerPreset, bool)
AsBasicAudioAnalyzerPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsBasicPreset() (BasicPreset, bool)
AsBasicPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsBuiltInStandardEncoderPreset() (*BuiltInStandardEncoderPreset, bool)
AsBuiltInStandardEncoderPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsFaceDetectorPreset() (*FaceDetectorPreset, bool)
AsFaceDetectorPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsPreset() (*Preset, bool)
AsPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsStandardEncoderPreset() (*StandardEncoderPreset, bool)
AsStandardEncoderPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) AsVideoAnalyzerPreset() (*VideoAnalyzerPreset, bool)
AsVideoAnalyzerPreset is the BasicPreset implementation for VideoAnalyzerPreset.
func (vap VideoAnalyzerPreset) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for VideoAnalyzerPreset.
VideoLayer describes the settings to be used when encoding the input video into a desired output bitrate layer.
type VideoLayer struct { // Bitrate - The average bitrate in bits per second at which to encode the input video when generating this layer. This is a required field. Bitrate *int32 `json:"bitrate,omitempty"` // MaxBitrate - The maximum bitrate (in bits per second), at which the VBV buffer should be assumed to refill. If not specified, defaults to the same value as bitrate. MaxBitrate *int32 `json:"maxBitrate,omitempty"` // BFrames - The number of B-frames to be used when encoding this layer. If not specified, the encoder chooses an appropriate number based on the video profile and level. BFrames *int32 `json:"bFrames,omitempty"` // FrameRate - The frame rate (in frames per second) at which to encode this layer. The value can be in the form of M/N where M and N are integers (For example, 30000/1001), or in the form of a number (For example, 30, or 29.97). The encoder enforces constraints on allowed frame rates based on the profile and level. If it is not specified, the encoder will use the same frame rate as the input video. FrameRate *string `json:"frameRate,omitempty"` // Slices - The number of slices to be used when encoding this layer. If not specified, default is zero, which means that encoder will use a single slice for each frame. Slices *int32 `json:"slices,omitempty"` // AdaptiveBFrame - Whether or not adaptive B-frames are to be used when encoding this layer. If not specified, the encoder will turn it on whenever the video profile permits its use. AdaptiveBFrame *bool `json:"adaptiveBFrame,omitempty"` // Width - The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input. Width *string `json:"width,omitempty"` // Height - The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input. Height *string `json:"height,omitempty"` // Label - The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file. Label *string `json:"label,omitempty"` // OdataType - Possible values include: 'OdataTypeLayer', 'OdataTypeMicrosoftMediaH265VideoLayer', 'OdataTypeMicrosoftMediaH265Layer', 'OdataTypeMicrosoftMediaVideoLayer', 'OdataTypeMicrosoftMediaH264Layer', 'OdataTypeMicrosoftMediaJpgLayer', 'OdataTypeMicrosoftMediaPngLayer' OdataType OdataTypeBasicLayer `json:"@odata.type,omitempty"` }
func (vl VideoLayer) AsBasicH265VideoLayer() (BasicH265VideoLayer, bool)
AsBasicH265VideoLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsBasicLayer() (BasicLayer, bool)
AsBasicLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsBasicVideoLayer() (BasicVideoLayer, bool)
AsBasicVideoLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsH264Layer() (*H264Layer, bool)
AsH264Layer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsH265Layer() (*H265Layer, bool)
AsH265Layer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsH265VideoLayer() (*H265VideoLayer, bool)
AsH265VideoLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsJpgLayer() (*JpgLayer, bool)
AsJpgLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsLayer() (*Layer, bool)
AsLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsPngLayer() (*PngLayer, bool)
AsPngLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) AsVideoLayer() (*VideoLayer, bool)
AsVideoLayer is the BasicLayer implementation for VideoLayer.
func (vl VideoLayer) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for VideoLayer.
VideoOverlay describes the properties of a video overlay.
type VideoOverlay struct { // Position - The location in the input video where the overlay is applied. Position *Rectangle `json:"position,omitempty"` // Opacity - The opacity of the overlay. This is a value in the range [0 - 1.0]. Default is 1.0 which mean the overlay is opaque. Opacity *float64 `json:"opacity,omitempty"` // CropRectangle - An optional rectangular window used to crop the overlay image or video. CropRectangle *Rectangle `json:"cropRectangle,omitempty"` // InputLabel - The label of the job input which is to be used as an overlay. The Input must specify exactly one file. You can specify an image file in JPG, PNG, GIF or BMP format, or an audio file (such as a WAV, MP3, WMA or M4A file), or a video file. See https://aka.ms/mesformats for the complete list of supported audio and video file formats. InputLabel *string `json:"inputLabel,omitempty"` // Start - The start position, with reference to the input video, at which the overlay starts. The value should be in ISO 8601 format. For example, PT05S to start the overlay at 5 seconds into the input video. If not specified the overlay starts from the beginning of the input video. Start *string `json:"start,omitempty"` // End - The end position, with reference to the input video, at which the overlay ends. The value should be in ISO 8601 format. For example, PT30S to end the overlay at 30 seconds into the input video. If not specified or the value is greater than the input video duration, the overlay will be applied until the end of the input video if the overlay media duration is greater than the input video duration, else the overlay will last as long as the overlay media duration. End *string `json:"end,omitempty"` // FadeInDuration - The duration over which the overlay fades in onto the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade in (same as PT0S). FadeInDuration *string `json:"fadeInDuration,omitempty"` // FadeOutDuration - The duration over which the overlay fades out of the input video. The value should be in ISO 8601 duration format. If not specified the default behavior is to have no fade out (same as PT0S). FadeOutDuration *string `json:"fadeOutDuration,omitempty"` // AudioGainLevel - The gain level of audio in the overlay. The value should be in the range [0, 1.0]. The default is 1.0. AudioGainLevel *float64 `json:"audioGainLevel,omitempty"` // OdataType - Possible values include: 'OdataTypeOverlay', 'OdataTypeMicrosoftMediaAudioOverlay', 'OdataTypeMicrosoftMediaVideoOverlay' OdataType OdataTypeBasicOverlay `json:"@odata.type,omitempty"` }
func (vo VideoOverlay) AsAudioOverlay() (*AudioOverlay, bool)
AsAudioOverlay is the BasicOverlay implementation for VideoOverlay.
func (vo VideoOverlay) AsBasicOverlay() (BasicOverlay, bool)
AsBasicOverlay is the BasicOverlay implementation for VideoOverlay.
func (vo VideoOverlay) AsOverlay() (*Overlay, bool)
AsOverlay is the BasicOverlay implementation for VideoOverlay.
func (vo VideoOverlay) AsVideoOverlay() (*VideoOverlay, bool)
AsVideoOverlay is the BasicOverlay implementation for VideoOverlay.
func (vo VideoOverlay) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for VideoOverlay.
VideoSyncMode enumerates the values for video sync mode.
type VideoSyncMode string
const ( // VideoSyncModeAuto This is the default method. Chooses between Cfr and Vfr depending on muxer // capabilities. For output format MP4, the default mode is Cfr. VideoSyncModeAuto VideoSyncMode = "Auto" // VideoSyncModeCfr Input frames will be repeated and/or dropped as needed to achieve exactly the requested // constant frame rate. Recommended when the output frame rate is explicitly set at a specified value VideoSyncModeCfr VideoSyncMode = "Cfr" // VideoSyncModePassthrough The presentation timestamps on frames are passed through from the input file to // the output file writer. Recommended when the input source has variable frame rate, and are attempting to // produce multiple layers for adaptive streaming in the output which have aligned GOP boundaries. Note: if // two or more frames in the input have duplicate timestamps, then the output will also have the same // behavior VideoSyncModePassthrough VideoSyncMode = "Passthrough" // VideoSyncModeVfr Similar to the Passthrough mode, but if the input has frames that have duplicate // timestamps, then only one frame is passed through to the output, and others are dropped. Recommended // when the number of output frames is expected to be equal to the number of input frames. For example, the // output is used to calculate a quality metric like PSNR against the input VideoSyncModeVfr VideoSyncMode = "Vfr" )
func PossibleVideoSyncModeValues() []VideoSyncMode
PossibleVideoSyncModeValues returns an array of possible values for the VideoSyncMode const type.
VideoTrackDescriptor a TrackSelection to select video tracks.
type VideoTrackDescriptor struct { // OdataType - Possible values include: 'OdataTypeTrackDescriptor', 'OdataTypeMicrosoftMediaAudioTrackDescriptor', 'OdataTypeMicrosoftMediaSelectAudioTrackByAttribute', 'OdataTypeMicrosoftMediaSelectAudioTrackByID', 'OdataTypeMicrosoftMediaVideoTrackDescriptor', 'OdataTypeMicrosoftMediaSelectVideoTrackByAttribute', 'OdataTypeMicrosoftMediaSelectVideoTrackByID' OdataType OdataTypeBasicTrackDescriptor `json:"@odata.type,omitempty"` }
func (vtd VideoTrackDescriptor) AsAudioTrackDescriptor() (*AudioTrackDescriptor, bool)
AsAudioTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsBasicAudioTrackDescriptor() (BasicAudioTrackDescriptor, bool)
AsBasicAudioTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsBasicTrackDescriptor() (BasicTrackDescriptor, bool)
AsBasicTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsBasicVideoTrackDescriptor() (BasicVideoTrackDescriptor, bool)
AsBasicVideoTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsSelectAudioTrackByAttribute() (*SelectAudioTrackByAttribute, bool)
AsSelectAudioTrackByAttribute is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsSelectAudioTrackByID() (*SelectAudioTrackByID, bool)
AsSelectAudioTrackByID is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsSelectVideoTrackByAttribute() (*SelectVideoTrackByAttribute, bool)
AsSelectVideoTrackByAttribute is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsSelectVideoTrackByID() (*SelectVideoTrackByID, bool)
AsSelectVideoTrackByID is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsTrackDescriptor() (*TrackDescriptor, bool)
AsTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) AsVideoTrackDescriptor() (*VideoTrackDescriptor, bool)
AsVideoTrackDescriptor is the BasicTrackDescriptor implementation for VideoTrackDescriptor.
func (vtd VideoTrackDescriptor) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for VideoTrackDescriptor.